/* 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: /usr/drwho/vault/cvs/topsy/MipsSim/UTLBMissException.java,v $ Author(s): G. Fankhauser Affiliation: ETH Zuerich, TIK Version: $Revision: 1.1.1.1 $ Creation Date: December 1996 Last Date of Change: $Date: 1999/07/22 17:35:22 $ by: $Author: gfa $ $Log: UTLBMissException.java,v $ Revision 1.1.1.1 1999/07/22 17:35:22 gfa cvs move Revision 1.1 1997/05/09 14:33:46 gfa Initial revision # Revision 1.1 1997/02/04 10:42:01 topsy # Initial revision # */ import MemoryException; public class UTLBMissException extends MemoryException { UTLBMissException() {} UTLBMissException(String msg) { super(msg); } }