1 9 10 package org.jboss.util; 11 12 19 public class CoercionException 20 extends NestedRuntimeException 21 { 22 28 public CoercionException(String msg) { 29 super(msg); 30 } 31 32 39 public CoercionException(String msg, Throwable nested) { 40 super(msg, nested); 41 } 42 43 49 public CoercionException(Throwable nested) { 50 super(nested); 51 } 52 53 56 public CoercionException() { 57 super(); 58 } 59 } 60 | Popular Tags |