/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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; public class AssertionError extends Error { public AssertionError() { } public AssertionError(Object detailMessage) { } public AssertionError(boolean detailMessage) { } public AssertionError(char detailMessage) { } public AssertionError(int detailMessage) { } public AssertionError(long detailMessage) { } public AssertionError(float detailMessage) { } public AssertionError(double detailMessage) { } }