Class ResourceNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ResourceNotFoundException
    extends PubServerException
    Class representing Exception which is thrown when Resource cannot be found
    See Also:
    Serialized Form
    • Constructor Detail

      • ResourceNotFoundException

        public ResourceNotFoundException()
        Default Constructor
      • ResourceNotFoundException

        public ResourceNotFoundException​(java.lang.String message,
                                         java.lang.Throwable cause,
                                         int errorCode,
                                         java.lang.Object caller)
        Constructor
        Parameters:
        message - short textual error message, possibly containing some identifying object data
        cause - (optional) original exception leading to this one or null
        errorCode - Global unique code error number for every exception in our system
        caller - Object that creates this exception. Object class name will be used as name of the module that created this exception. If caller is of type String the string itself will be used as module name (long strings might be truncated).
      • ResourceNotFoundException

        public ResourceNotFoundException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructor
        Parameters:
        message - short textual error message, possibly containing some identifying object data
        cause - (optional) original exception leading to this one or null