Class TokenFlowException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.sap.cloud.security.xsuaa.tokenflows.TokenFlowException
-
- All Implemented Interfaces:
Serializable
public class TokenFlowException extends IOException
Exception thrown to signal issues during a token flow execution.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenFlowException()Creates a new exception instances.TokenFlowException(String message)Creates a new exception instances.TokenFlowException(String message, Throwable cause)Creates a new exception instances.TokenFlowException(Throwable cause)Creates a new exception instances.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TokenFlowException
public TokenFlowException()
Creates a new exception instances.
-
TokenFlowException
public TokenFlowException(String message, Throwable cause)
Creates a new exception instances.- Parameters:
message- - the error message.cause- - the error cause.
-
TokenFlowException
public TokenFlowException(String message)
Creates a new exception instances.- Parameters:
message- - the error message.
-
TokenFlowException
public TokenFlowException(Throwable cause)
Creates a new exception instances.- Parameters:
cause- - the error cause.
-
-