recompiled libs; JSONException fixed, JSlider, JSpinner
[jalview.git] / srcjar / javajs / util / JSONException.java
1 package javajs.util;
2
3 public class JSONException extends RuntimeException {
4     public JSONException(String message) {
5         super(message);
6     }
7     
8     public JSONException(Throwable cause) {
9         super(cause.getMessage());
10         this.cause = cause;
11     }
12
13     public Throwable getCause() {
14         return this.cause;
15     }
16 }
17
18 }