-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Server now creatable with SSH-Key name or ID, SSH-Key can now be foun…
…d by fingerprint, Added InvalidParametersException
- Loading branch information
Tom Siewert
committed
Mar 29, 2018
1 parent
e5bf60e
commit 05f217f
Showing
5 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/me/tomsdevsn/hetznercloud/exception/InvalidParametersException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package me.tomsdevsn.hetznercloud.exception; | ||
|
||
/** | ||
* The Exception will be called, if you use invalid parameters. | ||
*/ | ||
public class InvalidParametersException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 7465859521263546503L; | ||
|
||
public InvalidParametersException(String message) { | ||
super(message); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters