/* Copyright (c) 1996-1997 Swiss Federal Institute of Technology, Computer Engineering and Networks Laboratory. All rights reserved. Written by George Fankhauser . For more documentation please visit http://www.tik.ee.ethz.ch/~gfa. File: $Source: /private/proj/topsy/gfa/MipsSimulator/RCS/BreakpointException.java,v $ Author(s): G. Fankhauser Affiliation: ETH Zuerich, TIK Version: $Revision: 1.1 $ Creation Date: December 1996 Last Date of Change: $Date: 97/05/09 14:33:46 $ by: $Author: gfa $ $Log: BreakpointException.java,v $ # Revision 1.1 97/05/09 14:33:46 gfa # Initial revision # # Revision 1.1 1997/02/04 10:42:01 topsy # Initial revision # */ import java.lang.*; public class BreakpointException extends Exception { BreakpointException() { } BreakpointException(String s) { super(s); } }