Class ASGRuntimeException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    ConstantNotFoundException

    public class ASGRuntimeException
    extends java.lang.Exception
    Base 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ASGRuntimeException

        public ASGRuntimeException​(java.lang.String message)
        Creates a new exception with a message.
        Parameters:
        message - a String object.
      • ASGRuntimeException

        public ASGRuntimeException​(java.lang.Throwable cause)
        Creates a new exception with a cause.
        Parameters:
        cause - a Throwable object.
      • ASGRuntimeException

        public ASGRuntimeException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Creates a new exception with a message and a cause.
        Parameters:
        cause - a Throwable object.
        message - a String object.