1 23 24 package de.progra.charting; 25 26 30 public class EncodingException extends java.lang.Exception { 31 32 private Throwable cause; 33 34 37 public EncodingException() { 38 } 39 40 44 public EncodingException(String msg) { 45 super(msg); 46 } 47 48 54 public EncodingException(String msg, Throwable cause) { 55 super(msg); 56 this.cause = cause; 57 } 58 59 60 public Throwable getCause() { 61 return cause; 62 } 63 } | Popular Tags |