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
Signals that development process creation failed with some reason.
 Exception messages is shown in UI, localization needs.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionDevelopmentProcessException(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.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
- 
DevelopmentProcessException
Constructs a new exception with the specified detail message.- Parameters:
 message- the detail message, cannot benull
 - 
DevelopmentProcessException
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause, cannot benull
 - 
DevelopmentProcessException
Constructs a new exception with the specified detail message and cause.- Parameters:
 message- the detail message, cannot benullcause- the cause, cannot benull
 
 -