JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
KerMorException.java
Go to the documentation of this file.
1 package kermor;
2 
9 public class KerMorException extends Exception {
10 
14  private static final long serialVersionUID = 3311639214049185983L;
15 
16  public KerMorException(String msg, Exception inner) {
17  super(msg, inner);
18  }
19 
20  public KerMorException(String msg) {
21  super(msg);
22  }
23 
24 }
KerMorException(String msg, Exception inner)
Custom exception for JKerMor related errors.