Skip to content

Commit

Permalink
add a new constructor in PlasmaOutOfMemoryException
Browse files Browse the repository at this point in the history
  • Loading branch information
offthewall123 committed Jul 26, 2020
1 parent 5ded145 commit f0298e9
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -26,6 +26,10 @@ public PlasmaOutOfMemoryException(String message) {
super("The plasma store ran out of memory." + message);
}

public PlasmaOutOfMemoryException(String message, Throwable t) {
super("The plasma store ran out of memory." + message, t);
}

public PlasmaOutOfMemoryException() {
super("The plasma store ran out of memory.");
}
Expand Down

0 comments on commit f0298e9

Please sign in to comment.