783 |
18 Sep 08 |
jari |
1 |
/* |
783 |
18 Sep 08 |
jari |
$Id$ |
783 |
18 Sep 08 |
jari |
3 |
|
783 |
18 Sep 08 |
jari |
Copyright (C) 2006 Johan Enell |
783 |
18 Sep 08 |
jari |
5 |
|
783 |
18 Sep 08 |
jari |
This file is part of the se.lu.onk.MergeBioAssay plug-in for |
783 |
18 Sep 08 |
jari |
BASE. Available at http://baseplugins.thep.lu.se/ and BASE web |
783 |
18 Sep 08 |
jari |
site is http://base.thep.lu.se |
783 |
18 Sep 08 |
jari |
9 |
|
783 |
18 Sep 08 |
jari |
This is free software; you can redistribute it and/or modify it |
783 |
18 Sep 08 |
jari |
under the terms of the GNU General Public License as published by |
783 |
18 Sep 08 |
jari |
the Free Software Foundation; either version 3 of the License, or |
783 |
18 Sep 08 |
jari |
(at your option) any later version. |
783 |
18 Sep 08 |
jari |
14 |
|
783 |
18 Sep 08 |
jari |
The software is distributed in the hope that it will be useful, but |
783 |
18 Sep 08 |
jari |
WITHOUT ANY WARRANTY; without even the implied warranty of |
783 |
18 Sep 08 |
jari |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
783 |
18 Sep 08 |
jari |
General Public License for more details. |
783 |
18 Sep 08 |
jari |
19 |
|
783 |
18 Sep 08 |
jari |
You should have received a copy of the GNU General Public License |
783 |
18 Sep 08 |
jari |
along with BASE. If not, see <http://www.gnu.org/licenses/>. |
783 |
18 Sep 08 |
jari |
22 |
*/ |
149 |
10 Aug 06 |
enell |
23 |
package mergebioassay.mergers; |
149 |
10 Aug 06 |
enell |
24 |
|
149 |
10 Aug 06 |
enell |
25 |
/** |
149 |
10 Aug 06 |
enell |
* @author Johan Enell |
149 |
10 Aug 06 |
enell |
27 |
* |
149 |
10 Aug 06 |
enell |
* Thrown when a bad assayname pattern is found. |
149 |
10 Aug 06 |
enell |
29 |
*/ |
149 |
10 Aug 06 |
enell |
30 |
public class BadPatternException extends Exception { |
149 |
10 Aug 06 |
enell |
31 |
|
149 |
10 Aug 06 |
enell |
32 |
/** |
149 |
10 Aug 06 |
enell |
* Constructs an <code>BadPatternException</code> with the specified detail message. |
149 |
10 Aug 06 |
enell |
34 |
* |
149 |
10 Aug 06 |
enell |
* @param message the detail message. |
149 |
10 Aug 06 |
enell |
36 |
*/ |
149 |
10 Aug 06 |
enell |
37 |
public BadPatternException(String message) { |
149 |
10 Aug 06 |
enell |
38 |
super(message); |
149 |
10 Aug 06 |
enell |
39 |
} |
149 |
10 Aug 06 |
enell |
40 |
} |