public class

ApplicationNotFoundException

extends ObjectNotFoundException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.atlassian.crowd.exception.CrowdException
         ↳ com.atlassian.crowd.exception.ObjectNotFoundException
           ↳ com.atlassian.crowd.exception.ApplicationNotFoundException

Class Overview

Thrown when an application is not found.

Summary

Public Constructors
ApplicationNotFoundException(String applicationName)
Constructs a new application not found exception with an application name.
ApplicationNotFoundException(String applicationName, Throwable e)
Constructs a new application not found exception with an application name and cause.
ApplicationNotFoundException(Long id)
Constructs a new application not found exception with an application id.
ApplicationNotFoundException(Long id, Throwable e)
Constructs a new application not found exception with an application id and cause.
Public Methods
String getApplicationName()
Long getId()
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ApplicationNotFoundException (String applicationName)

Constructs a new application not found exception with an application name.

Parameters
applicationName Name of the application.

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 getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

public ApplicationNotFoundException (Long id)

Constructs a new application not found exception with an application id.

Parameters
id Id of the application.

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 getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

Public Methods

public String getApplicationName ()

public Long getId ()