public class TransbankException extends Exception
| Constructor and Description |
|---|
TransbankException()
Constructs a new TransbankException with no detail message.
|
TransbankException(int code,
String message)
Constructs a new TransbankException with the specified detail message and error code.
|
TransbankException(int code,
String message,
Throwable cause)
Constructs a new TransbankException with the specified detail message, error code, and cause.
|
TransbankException(int code,
String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace)
Constructs a new TransbankException with the specified error code and cause.
|
TransbankException(int code,
Throwable cause)
Constructs a new TransbankException with the specified Ccode and cause.
|
TransbankException(String message)
Constructs a new TransbankException with the specified detail message.
|
TransbankException(Throwable cause)
Constructs a new TransbankException with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic TransbankException()
public TransbankException(String message)
message - The detail message.public TransbankException(int code,
String message)
code - The error code.message - The detail message.public TransbankException(int code,
String message,
Throwable cause)
code - The error code.message - The detail message.cause - The cause.public TransbankException(Throwable cause)
cause - The cause.public TransbankException(int code,
Throwable cause)
code - The error code.cause - The cause.public TransbankException(int code,
String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace)
code - The error code.message - The detail message.cause - The cause.enableSuppression - Whether or not suppression is enabled or disabled.writableStackTrace - Whether or not the stack trace should be writable.Copyright © 2018–2024. All rights reserved.