-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Post-python removal patching, bugfixing, and log cleaning
- Loading branch information
1 parent
d1de15a
commit 15a991e
Showing
21 changed files
with
253 additions
and
298 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
vcell-cli/src/main/java/org/vcell/cli/exceptions/PreProcessingException.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,20 @@ | ||
package org.vcell.cli.exceptions; | ||
|
||
public class PreProcessingException extends RuntimeException { | ||
public PreProcessingException(String message) { | ||
super(message); | ||
} | ||
|
||
public PreProcessingException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public PreProcessingException(String message, Throwable cause){ | ||
super(message, cause); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return super.hashCode(); | ||
} | ||
} |
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.