1 /*
2  * Created on Jul 6, 2016
3  * Created by Paul Gardner
4  *
5  * Copyright 2016 Azureus Software, Inc.  All rights reserved.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20  */
21 
22 
23 package org.gudy.azureus2.core3.util;
24 
25 public class
26 BoringException
27 	extends Exception
28 {
29 	public
BoringException( String str )30 	BoringException(
31 		String		str )
32 	{
33 		super( str );
34 	}
35 
BoringException( String str, Throwable cause )36 	public BoringException(
37 		String		str,
38 		Throwable 	cause )
39 	{
40 		super( str, cause );
41 	}
42 }
43