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
public class InvalidRequestException extends VaultConnectorException
Exception thrown when trying to send malformed request.- Since:
 - 0.1
 - Author:
 - Stefan Kalscheuer
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description InvalidRequestException()Constructs 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 Detail
- 
InvalidRequestException
public InvalidRequestException()
Constructs a new empty exception. 
- 
InvalidRequestException
public InvalidRequestException(String message)
Constructs a new exception with the specified detail message.- Parameters:
 message- the detail message
 
- 
InvalidRequestException
public InvalidRequestException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 
 - 
 
 -