2-APL UPC project.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 344 B view raw
1package blockworld.lib; 2 3public class Error extends Exception { 4 5 private static final long serialVersionUID = 1502566209757475201L; 6 7 public Error( String s ) { 8 super( s ); 9 } 10 11 public Error( Exception e ) { 12 super( e.getMessage() ); 13 } 14 15 public Error( String s, Exception e ) { 16 super( s + ": " + e.getMessage() ); 17 } 18}