1 23 package org.apache.slide.common; 24 25 27 33 public class PropertyParseException extends SlideException { 34 35 39 protected Throwable cause = null; 40 41 46 public PropertyParseException(String message) { 47 this(message, null); 48 } 49 50 56 public PropertyParseException(String message, Throwable cause) { 57 super(message); 58 this.cause = cause; 59 } 60 61 67 public Throwable getCause() { 68 return cause; 69 } 70 71 } 72 73 | Popular Tags |