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 SummaryConstructorsConstructorDescriptionTeamException(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 SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TeamExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, cannot be- null
 
- 
TeamExceptionConstructs a new exception with the specified cause.- Parameters:
- cause- the cause, cannot be- null
 
- 
TeamExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, cannot be- null
- cause- the cause, cannot be- null
 
 
-