java.lang.Object |
↳ |
java.lang.Throwable |
|
↳ |
java.lang.Exception |
|
|
↳ |
java.lang.RuntimeException |
|
|
|
↳ |
com.atlassian.bitbucket.jira.JiraSetupException |
Known Direct Subclasses
ApplicationTypeNotInstalledException |
Exception thrown when the required UAL ApplicationType has not been installed on the remote Jira server. |
IncorrectApplicationBaseUrlException |
This exception is thrown when the base URL supplied to Jira to create a reciprocal application link was not
accessible from the Jira server. |
JiraUserCredentialsException |
This exception is thrown when the user-supplied Jira admin username and/or password was incorrect, or the user
authenticated successfully but they are not an administrator. |
NotAJiraServerException |
This exception is thrown when the setup service can not retrieve the remote Jira server's UAL manifest (usually
available at /rest/applinks/1.0/manifest). |
|
Class Overview
Used to indicate something has gone wrong with the creation of the Jira Application Link and/or creation of the Jira
Crowd configuration.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Throwable
synchronized
final
void
|
addSuppressed(Throwable arg0)
|
synchronized
Throwable
|
fillInStackTrace()
|
synchronized
Throwable
|
getCause()
|
String
|
getLocalizedMessage()
|
String
|
getMessage()
|
StackTraceElement[]
|
getStackTrace()
|
synchronized
final
Throwable[]
|
getSuppressed()
|
synchronized
Throwable
|
initCause(Throwable arg0)
|
void
|
printStackTrace()
|
void
|
printStackTrace(PrintWriter arg0)
|
void
|
printStackTrace(PrintStream arg0)
|
void
|
setStackTrace(StackTraceElement[] arg0)
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
JiraSetupException
(String prettyUserMessage)
Parameters
prettyUserMessage
| a message for display in the UI that will contain a brief description of the problem
and the next steps the user should take.
|
public
JiraSetupException
(String prettyUserMessage, Throwable cause)
Parameters
prettyUserMessage
| a message for display in the UI that will contain a brief description of the problem
and the next steps the user should take. |
cause
| the nested exception that is or contains the root cause of the problem
|