Package com._1c.g5.v8.dt.team
Class DevelopmentProcessException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com._1c.g5.v8.dt.team.TeamException
-
- com._1c.g5.v8.dt.team.DevelopmentProcessException
-
- All Implemented Interfaces:
Serializable
public class DevelopmentProcessException extends TeamException
Signals that development process creation failed with some reason. Exception messages is shown in UI, localization needs.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DevelopmentProcessException(String message)
Constructs a new exception with the specified detail message.DevelopmentProcessException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.DevelopmentProcessException(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
-
DevelopmentProcessException
public DevelopmentProcessException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message, cannot benull
-
DevelopmentProcessException
public DevelopmentProcessException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause, cannot benull
-
-