Package com._1c.g5.v8.dt.team
Class TeamException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com._1c.g5.v8.dt.team.TeamException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DevelopmentProcessException,DevelopmentProcessSettingsException,IssueTypeRepositoryException,TeamPreferenceStoreException
A common ancestor of all team management exceptions. May be used for convenience.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTeamException(String message) Constructs a new exception with the specified detail message.TeamException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.TeamException(Throwable cause) Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TeamException
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message, cannot benull
-
TeamException
Constructs a new exception with the specified cause.- Parameters:
cause- the cause, cannot benull
-
TeamException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message, cannot benullcause- the cause, cannot benull
-