-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f94b60e
commit cb55288
Showing
118 changed files
with
1,727 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,20 +20,28 @@ | |
*/ | ||
|
||
/** | ||
* Exception occuring during release execution. | ||
* Exception occurring during release execution. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class ReleaseExecutionException | ||
extends Exception | ||
{ | ||
/** | ||
* Creates a new instance of <code>ReleaseExecutionException</code> without detail message. | ||
This comment has been minimized.
Sorry, something went wrong. |
||
*/ | ||
public ReleaseExecutionException( String message ) | ||
{ | ||
super( message ); | ||
} | ||
|
||
public ReleaseExecutionException( String message, Throwable t ) | ||
/** | ||
* Constructs an instance of <code>ReleaseExecutionException</code> with the specified detail message. | ||
* | ||
* @param message the detail message. | ||
*/ | ||
public ReleaseExecutionException( String message, Throwable cause ) | ||
{ | ||
super( message, t ); | ||
super( message, cause ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Rather without cause, isn't it?