public final class

ResourceNotFoundException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ com.neomades.app.ResourceNotFoundException

Class Overview

This exception is thrown by ResManager when a requested resource can not be found.

Summary

Public Constructors
ResourceNotFoundException(String msg)
Constructs a new exception with the specified detail message.
ResourceNotFoundException(String msg, Throwable cause)
Constructs a new exception with the specified detail message cause.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ResourceNotFoundException (String msg)

Constructs a new exception with the specified detail message.

Parameters
msg the detail message (which is saved for later retrieval by the getMessage() method).

public ResourceNotFoundException (String msg, Throwable cause)

Constructs a new exception with the specified detail message cause.

Parameters
msg the detail message (which is saved for later retrieval by the getMessage() method).
cause the cause. A null value is permitted, and indicates that the cause is nonexistent or unknown.