1 22 package org.jboss.util.property; 23 24 import org.jboss.util.NestedError; 25 26 32 public class PropertyError 33 extends NestedError 34 { 35 41 public PropertyError(String msg) { 42 super(msg); 43 } 44 45 52 public PropertyError(String msg, Throwable nested) { 53 super(msg, nested); 54 } 55 56 62 public PropertyError(Throwable nested) { 63 super(nested); 64 } 65 66 69 public PropertyError() { 70 super(); 71 } 72 } 73 | Popular Tags |