Changeset 4005


Ignore:
Timestamp:
09/22/03 17:26:12 (20 years ago)
Author:
piso
Message:

type-error, simple-type-error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/make_condition.java

    r3988 r4005  
    33 *
    44 * Copyright (C) 2003 Peter Graves
    5  * $Id: make_condition.java,v 1.5 2003-09-22 11:09:38 piso Exp $
     5 * $Id: make_condition.java,v 1.6 2003-09-22 17:26:12 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    4949        if (type == Symbol.SIMPLE_ERROR)
    5050            return new SimpleError(initArgs);
     51        if (type == Symbol.TYPE_ERROR)
     52            return new TypeError(initArgs);
     53        if (type == Symbol.SIMPLE_TYPE_ERROR)
     54            return new SimpleTypeError(initArgs);
    5155        if (type == Symbol.UNBOUND_SLOT)
    5256            return new UnboundSlot(initArgs);
Note: See TracChangeset for help on using the changeset viewer.