/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.reflect; public class UndeclaredThrowableException extends RuntimeException { public UndeclaredThrowableException(Throwable undeclaredThrowable) { } public UndeclaredThrowableException(Throwable undeclaredThrowable, String s) { } native public Throwable getUndeclaredThrowable(); native public Throwable getCause(); }