Package io.csar

Class ConcernNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConcernNotFoundException
    extends java.lang.IllegalStateException
    An unchecked illegal state exception to indicate that a particular concern could not be located.
    Author:
    Garret Wilson
    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

      • ConcernNotFoundException

        public ConcernNotFoundException()
        Default constructor with no message.
      • ConcernNotFoundException

        public ConcernNotFoundException​(@Nullable
                                        java.lang.String message)
        Message constructor.
        Parameters:
        message - An explanation of why the input could not be parsed, or null if a no message should be used.
      • ConcernNotFoundException

        public ConcernNotFoundException​(@Nullable
                                        java.lang.Throwable cause)
        Cause constructor.
        Parameters:
        cause - The cause error or null if the cause is nonexistent or unknown.
      • ConcernNotFoundException

        public ConcernNotFoundException​(@Nullable
                                        java.lang.String message,
                                        @Nullable
                                        java.lang.Throwable cause)
        Message and cause constructor.
        Parameters:
        message - An explanation of why the input could not be parsed, or null if a no message should be used.
        cause - The cause error or null if the cause is nonexistent or unknown.