Package net.anotheria.asg.exception
Class ASGRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.anotheria.asg.exception.ASGRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ConstantNotFoundException
public class ASGRuntimeException extends java.lang.ExceptionBase class for all exceptions thrown by generated code at runtime.- Version:
- $Id: $Id
- Author:
- another
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ASGRuntimeException(java.lang.String message)Creates a new exception with a message.ASGRuntimeException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with a message and a cause.ASGRuntimeException(java.lang.Throwable cause)Creates a new exception with a cause.
-
-
-
Constructor Detail
-
ASGRuntimeException
public ASGRuntimeException(java.lang.String message)
Creates a new exception with a message.- Parameters:
message- aStringobject.
-
ASGRuntimeException
public ASGRuntimeException(java.lang.Throwable cause)
Creates a new exception with a cause.- Parameters:
cause- aThrowableobject.
-
ASGRuntimeException
public ASGRuntimeException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with a message and a cause.- Parameters:
cause- aThrowableobject.message- aStringobject.
-
-