-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRELEASE-1115] Upgrade Parent to 39
This closes #105
- Loading branch information
Showing
228 changed files
with
14,166 additions
and
17,603 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
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
package org.apache.maven.shared.release; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
|
@@ -18,30 +16,27 @@ | |
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.maven.shared.release; | ||
|
||
/** | ||
* Exception occurring during release execution. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class ReleaseExecutionException | ||
extends Exception | ||
{ | ||
public class ReleaseExecutionException extends Exception { | ||
/** | ||
* Creates a new instance of <code>ReleaseExecutionException</code> without detail message. | ||
*/ | ||
public ReleaseExecutionException( String message ) | ||
{ | ||
super( message ); | ||
public ReleaseExecutionException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* 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, cause ); | ||
public ReleaseExecutionException(String message, Throwable cause) { | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
package org.apache.maven.shared.release; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
|
@@ -18,17 +16,15 @@ | |
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.maven.shared.release; | ||
|
||
/** | ||
* A failure during the release process. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class ReleaseFailureException | ||
extends Exception | ||
{ | ||
public ReleaseFailureException( String message ) | ||
{ | ||
super( message ); | ||
public class ReleaseFailureException extends Exception { | ||
public ReleaseFailureException(String message) { | ||
super(message); | ||
} | ||
} |
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.