1 17 18 package org.apache.geronimo.common.propertyeditor; 19 20 21 26 public class PropertyEditorException extends RuntimeException { 27 28 31 public PropertyEditorException() { 32 } 33 34 39 public PropertyEditorException(Throwable cause) { 40 super(cause); 41 } 42 43 48 public PropertyEditorException(String message) { 49 super(message); 50 } 51 52 58 public PropertyEditorException(String message, Throwable cause) { 59 super(message, cause); 60 } 61 62 } 63 | Popular Tags |