Package com.iizix

Class NotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NotFoundException
    extends java.lang.Error
    The not found exception is thrown when an object by reference or name is not found.
    Author:
    Christopher Mindus
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      ConstructorDescription
      NotFoundException​(java.lang.String message)
      Constructs a not found exception with just a message text.
      NotFoundException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a not found exception with a nested exception.
    • 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

      • NotFoundException

        public NotFoundException​(java.lang.String message)
        Constructs a not found exception with just a message text.
        Parameters:
        message - The text message of the exception.
      • NotFoundException

        public NotFoundException​(java.lang.String message,
                                 java.lang.Throwable cause)
        Constructs a not found exception with a nested exception.
        Parameters:
        message - The text message of the exception.
        cause - The nested exception that is the cause of this exception.