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
public class TeamException extends RuntimeException
A common ancestor of all team management exceptions. May be used for convenience.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TeamException(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 Detail
-
TeamException
public TeamException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message, cannot benull
-
TeamException
public TeamException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause, cannot benull
-
-