1 /*
2 This source is part of the
3 _____ ___ ____
4 __ / / _ \/ _ | / __/___ _______ _
5 / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 /___/
8 repository. It is in the public domain.
9 Contact BoD@JRAF.org for more information.
10
11 $Id: IBuddyException.java 265 2008-09-07 14:37:02Z bod $
12 */
13 package org.jraf.jlibibuddy;
14
15 /**
16 * General purpose exception for JLibIBuddy.
17 */
18 public class IBuddyException extends Exception {
19 public IBuddyException(String message) {
20 super(message);
21 }
22
23 public IBuddyException(String message, Throwable cause) {
24 super(message, cause);
25 }
26 }