-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some minor fixes and performance improvements
- Loading branch information
Showing
11 changed files
with
217 additions
and
140 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
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
20 changes: 0 additions & 20 deletions
20
bionetdb-core/src/main/java/org/opencb/bionetdb/core/exceptions/DBException.java
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
bionetdb-core/src/main/java/org/opencb/bionetdb/core/exceptions/NetworkDBException.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.opencb.bionetdb.core.exceptions; | ||
|
||
/** | ||
* Created by pfurio on 10/9/15. | ||
*/ | ||
public class NetworkDBException extends Exception { | ||
|
||
public NetworkDBException(String message) { | ||
super(message); | ||
} | ||
|
||
public NetworkDBException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public NetworkDBException(Throwable cause) { | ||
super(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.