Class ApplicationNotFoundException

All Implemented Interfaces:
Serializable

public class ApplicationNotFoundException extends ObjectNotFoundException
Thrown when an application is not found.
See Also:
  • Constructor Details

    • ApplicationNotFoundException

      public ApplicationNotFoundException(String applicationName)
      Constructs a new application not found exception with an application name.
      Parameters:
      applicationName - Name of the application.
    • ApplicationNotFoundException

      public ApplicationNotFoundException(String applicationName, Throwable e)
      Constructs a new application not found exception with an application name and cause.
      Parameters:
      applicationName - Name of the application.
      e - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • ApplicationNotFoundException

      public ApplicationNotFoundException(Long id)
      Constructs a new application not found exception with an application id.
      Parameters:
      id - Id of the application.
    • ApplicationNotFoundException

      public ApplicationNotFoundException(Long id, Throwable e)
      Constructs a new application not found exception with an application id and cause.
      Parameters:
      id - Id of the application.
      e - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
  • Method Details

    • getApplicationName

      public String getApplicationName()
    • getId

      public Long getId()