KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jmock > core > DummyThrowable


1 /* Copyright (c) 2000-2004 jMock.org
2  */

3 package test.jmock.core;
4
5 public class DummyThrowable extends Throwable JavaDoc
6 {
7
8     public DummyThrowable() {
9         super();
10     }
11
12     public DummyThrowable( String JavaDoc message ) {
13         super(message);
14     }
15
16 }
17
Popular Tags