www.pudn.com > j2me_cldc-1_1-fcs-src-winunix.rar > Exception.java
/* * Copyright © 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * */ package java.lang; /** * The classExceptionand its subclasses are a form of *Throwablethat indicates conditions that a reasonable * application might want to catch. * * @author Frank Yellin * @version 12/17/01 (CLDC 1.1) * @see java.lang.Error * @since JDK1.0, CLDC 1.0 */ public class Exception extends Throwable { /** * Constructs anExceptionwith no specified detail message. */ public Exception() { super(); } /** * Constructs anExceptionwith the specified detail message. * * @param s the detail message. */ public Exception(String s) { super(s); } }