Class FrameworkException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.qaitsolutions.pframe.core.exceptions.FrameworkException
- All Implemented Interfaces:
Serializable
Class is custom exception for framework related exceptions.
- Since:
- 1.0
- Author:
- Iulian Andrei (iulian.andrei@qaitsolutions.com)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new framework exception.FrameworkException
(String message) Constructs a new framework exception with the specified message.FrameworkException
(String message, Throwable cause) Constructs a new framework exception with the specified message and cause.FrameworkException
(Throwable cause) Constructs a new framework 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
-
FrameworkException
Constructs a new framework exception with the specified message and cause.- Parameters:
message
- Detailed text of exception.cause
- The cause of the exception.
-
FrameworkException
Constructs a new framework exception with the specified message.- Parameters:
message
- Detailed text of exception.
-
FrameworkException
Constructs a new framework exception with the specified cause.- Parameters:
cause
- The cause of the exception.
-
FrameworkException
public FrameworkException()Constructs a new framework exception.
-