Package com.adobe.aemds.guide.service
Class GuideException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.adobe.aemds.guide.service.GuideException
-
- All Implemented Interfaces:
java.io.Serializable
public class GuideException extends java.lang.RuntimeException
Java Exception that is thrown when any of the adaptive form Component Fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GuideException(java.lang.Exception e)
Constructs a new exception with the given exception.GuideException(java.lang.String message)
Constructs a new exception with a given messageGuideException(java.lang.String message, java.lang.Exception e)
Constructs a new exception with a given message and exception.
-
-
-
Constructor Detail
-
GuideException
public GuideException(java.lang.Exception e)
Constructs a new exception with the given exception.- Parameters:
e
- The causing exception.- See Also:
RuntimeException(java.lang.String, java.lang.Throwable, boolean, boolean)
-
GuideException
public GuideException(java.lang.String message)
Constructs a new exception with a given message- Parameters:
message
- The detail message.- See Also:
RuntimeException(java.lang.String)
-
GuideException
public GuideException(java.lang.String message, java.lang.Exception e)
Constructs a new exception with a given message and exception.- Parameters:
message
- The detail message.e
- The causing exception.- See Also:
RuntimeException(java.lang.String, java.lang.Throwable, boolean, boolean)
-
-