Class PayaraClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- fish.payara.arquillian.container.payara.clientutils.PayaraClientException
-
- All Implemented Interfaces:
Serializable
public class PayaraClientException extends RuntimeException
- Author:
- Z.Paulovics
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PayaraClientException()Construct a new instance withnullas its detail message.PayaraClientException(String message)Construct a new instance with the supplied messagePayaraClientException(String message, Throwable cause)Construct a new instance with the supplied message and causePayaraClientException(Throwable cause)Construct a new instance with the supplied 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
-
PayaraClientException
public PayaraClientException()
Construct a new instance withnullas its detail message.
-
PayaraClientException
public PayaraClientException(String message)
Construct a new instance with the supplied message- Parameters:
message- the message
-
PayaraClientException
public PayaraClientException(String message, Throwable cause)
Construct a new instance with the supplied message and cause- Parameters:
message- the messagecause- the Throwable that caused the exception to be thrown
-
PayaraClientException
public PayaraClientException(Throwable cause)
Construct a new instance with the supplied cause- Parameters:
cause- the Throwable that caused the exception to be thrown
-
-