Module de.stklcode.jvault.connector
Class InvalidRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.stklcode.jvault.connector.exception.VaultConnectorException
de.stklcode.jvault.connector.exception.InvalidRequestException
- All Implemented Interfaces:
 Serializable
Exception thrown when trying to send malformed request.
- Since:
 - 0.1
 - Author:
 - Stefan Kalscheuer
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new empty exception.InvalidRequestException(String message) Constructs a new exception with the specified detail message.InvalidRequestException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.InvalidRequestException(Throwable cause) Constructs a new exception with the specified cause. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
InvalidRequestException
public InvalidRequestException()Constructs a new empty exception. - 
InvalidRequestException
Constructs a new exception with the specified detail message.- Parameters:
 message- the detail message
 - 
InvalidRequestException
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 - 
InvalidRequestException
Constructs a new exception with the specified detail message and cause.- Parameters:
 message- the detail messagecause- the cause
 
 -