1 /* Copyright (c) 2000-2004 jMock.org2 */3 package test.jmock.core;4 5 public class DummyThrowable extends Throwable 6 {7 8 public DummyThrowable() {9 super();10 }11 12 public DummyThrowable( String message ) {13 super(message);14 }15 16 }17