Class UnhandledFeatureException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UnhandledFeatureException
    extends java.lang.Exception
    Exception representing the failure to encode a feature in the target language.
    Author:
    Alex Kalderimis
    See Also:
    Serialized Form
    • 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

      • UnhandledFeatureException

        public UnhandledFeatureException()
        Create an exception with a default message.
      • UnhandledFeatureException

        public UnhandledFeatureException​(java.lang.String message)
        Create an exception with a given message.
        Parameters:
        message - What to tell the user.
      • UnhandledFeatureException

        public UnhandledFeatureException​(java.lang.Throwable cause)
        Create an exception when there is something to blame.
        Parameters:
        cause - What caused this unfortunate situation.
      • UnhandledFeatureException

        public UnhandledFeatureException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Create an exception when there is a message and a cause
        Parameters:
        message - What to tell the user.
        cause - What caused this unfortunate situation.