1 22 package org.jboss.util.property; 23 24 import org.jboss.util.NestedRuntimeException; 25 26 33 public class PropertyException 34 extends NestedRuntimeException 35 { 36 42 public PropertyException(String msg) { 43 super(msg); 44 } 45 46 53 public PropertyException(String msg, Throwable nested) { 54 super(msg, nested); 55 } 56 57 63 public PropertyException(Throwable nested) { 64 super(nested); 65 } 66 67 70 public PropertyException() { 71 super(); 72 } 73 } 74 | Popular Tags |