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