-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from DICE-UNC/issue87
Issue87
- Loading branch information
Showing
22 changed files
with
1,129 additions
and
15 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
3 changes: 3 additions & 0 deletions
3
jargon-core/src/main/java/org/irods/jargon/core/checksum/LocalChecksumComputerFactory.java
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
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
65 changes: 65 additions & 0 deletions
65
jargon-core/src/main/java/org/irods/jargon/core/exception/ChecksumInvalidException.java
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* | ||
*/ | ||
package org.irods.jargon.core.exception; | ||
|
||
/** | ||
* @author Mike Conway - DICE General exception for checksum mismatches | ||
* | ||
*/ | ||
public class ChecksumInvalidException extends JargonException { | ||
|
||
private static final long serialVersionUID = 6069493884085439471L; | ||
|
||
/** | ||
* @param message | ||
*/ | ||
public ChecksumInvalidException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* @param message | ||
* @param cause | ||
*/ | ||
public ChecksumInvalidException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
/** | ||
* @param cause | ||
*/ | ||
public ChecksumInvalidException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
/** | ||
* @param message | ||
* @param cause | ||
* @param underlyingIRODSExceptionCode | ||
*/ | ||
public ChecksumInvalidException(String message, Throwable cause, | ||
int underlyingIRODSExceptionCode) { | ||
super(message, cause, underlyingIRODSExceptionCode); | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
/** | ||
* @param cause | ||
* @param underlyingIRODSExceptionCode | ||
*/ | ||
public ChecksumInvalidException(Throwable cause, | ||
int underlyingIRODSExceptionCode) { | ||
super(cause, underlyingIRODSExceptionCode); | ||
} | ||
|
||
/** | ||
* @param message | ||
* @param underlyingIRODSExceptionCode | ||
*/ | ||
public ChecksumInvalidException(String message, | ||
int underlyingIRODSExceptionCode) { | ||
super(message, underlyingIRODSExceptionCode); | ||
} | ||
|
||
} |
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
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.