Yurttas/PL/OOL/Java/F/03/03/AException.java

 1/**
 2 *  Copyright(C) 1998
 3 *  All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4 *
 5 *  Permission to use, copy, modify, and distribute this
 6 *  software and its documentation for EDUCATIONAL purposes
 7 *  and without fee is hereby granted provided that this
 8 *  copyright notice appears in all copies.
 9 *
10 *  @date   : January 1, 1998.
11 *  @authorĀ : Salih Yurttas.
12 */
13
14public class AException extends Exception {
15
16  public String s;
17  public Object o;
18
19  public AException(String s,
20                    Object o) {
21    super("No named \"" + s + "\" found");
22    this.s = s;
23    this.o = o;
24  }
25
26}