1 16 package org.apache.commons.lang; 17 18 import org.apache.commons.lang.exception.NestableRuntimeException; 19 20 44 public class UnhandledException extends NestableRuntimeException { 45 46 51 public UnhandledException(Throwable cause) { 52 super(cause); 53 } 54 55 61 public UnhandledException(String message, Throwable cause) { 62 super(message, cause); 63 } 64 65 } 66 | Popular Tags |