1 9 10 package org.jboss.util; 11 12 18 public class NotCoercibleException 19 extends CoercionException 20 { 21 27 public NotCoercibleException(String msg) { 28 super(msg); 29 } 30 31 38 public NotCoercibleException(String msg, Throwable nested) { 39 super(msg, nested); 40 } 41 42 48 public NotCoercibleException(Throwable nested) { 49 super(nested); 50 } 51 52 55 public NotCoercibleException() { 56 super(); 57 } 58 59 64 public NotCoercibleException(Object obj) { 65 super(String.valueOf(obj)); 66 } 67 } 68 | Popular Tags |