|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
MissingFactoryException.java | - | 0% | 0% | 0% |
|
1 | /** | |
2 | * JTRunner is free software; you can redistribute it and/or modify it under the | |
3 | * terms of the GNU General Public License as published by the Free Software | |
4 | * Foundation; either version 2, or (at your option) any later version. | |
5 | */ | |
6 | ||
7 | package jtr.config; | |
8 | ||
9 | /** | |
10 | * | |
11 | * @author frusso | |
12 | * @version 4.0 | |
13 | * @since 4.0 | |
14 | */ | |
15 | public class MissingFactoryException extends RuntimeException { | |
16 | ||
17 | /** Creates a new instance of MissingFactoryException */ | |
18 | 0 | public MissingFactoryException(String msg) { |
19 | 0 | super(msg); |
20 | } | |
21 | ||
22 | 0 | public MissingFactoryException(String msg, Throwable cause) { |
23 | 0 | super(msg,cause); |
24 | } | |
25 | } |
|