Changeset 3890
- Timestamp:
- 09/19/03 14:11:02 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Throw.java
r3889 r3890 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Throw.java,v 1. 5 2003-09-19 13:02:44piso Exp $5 * $Id: Throw.java,v 1.6 2003-09-19 14:11:02 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 22 22 package org.armedbear.lisp; 23 23 24 public final class Throw extends LispError24 public final class Throw extends ConditionThrowable 25 25 { 26 26 private final LispObject tag; … … 46 46 } 47 47 48 public String getMessage()48 public Condition getCondition() 49 49 { 50 return "attempt to throw to the non-existent tag " + tag;50 return new ControlError("attempt to throw to the non-existent tag " + tag); 51 51 } 52 52 }
Note: See TracChangeset
for help on using the changeset viewer.