Artifact ed46507c594c0b9f8f70500d527a6715ea0e1c6e304e05ad5ce4b85dd50bb51b:


//
// This file is part of the Jlisp implementation of Standard Lisp
// Copyright \u00a9 (C) Codemist Ltd, 1998-2000.
//

class LispException extends Exception
{
    LispObject details;
    String message;
    
    LispException()
    {
        this.message = "unknown"; 
	this.details = Jlisp.nil;
    }
    
    LispException(String message)
    {
        this.message=message;
	this.details=null; 
    }
    
    LispException(String message, LispObject details)
    {
        this.message = message;
	this.details = details; 
    }
}


REDUCE Historical
REDUCE Sourceforge Project | Historical SVN Repository | GitHub Mirror | SourceHut Mirror | NotABug Mirror | Chisel Mirror | Chisel RSS ]