|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IRunnerCreationException.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.runners; | |
| 8 | ||
| 9 | /** | |
| 10 | * This exception is thrown by the <code>RunnerCreator</code> should it be | |
| 11 | * impossible to instantiate the required runner. | |
| 12 | * | |
| 13 | * @author Francesco Russo (frusso@dev.java.net) | |
| 14 | * @version 4.0 | |
| 15 | * @since 1.1 | |
| 16 | */ | |
| 17 | public class IRunnerCreationException extends Exception { | |
| 18 | /** | |
| 19 | * | |
| 20 | */ | |
| 21 | private static final long serialVersionUID = -2977360945186758526L; | |
| 22 | ||
| 23 | /** | |
| 24 | * Constructs an IRunnerCreationException without a message. | |
| 25 | */ | |
| 26 | 0 | public IRunnerCreationException() { |
| 27 | 0 | super(); |
| 28 | } | |
| 29 | ||
| 30 | /** | |
| 31 | * Constructs an IRunnerCreationException with a detailed message. | |
| 32 | * | |
| 33 | * @param message | |
| 34 | * The message associated with the exception. | |
| 35 | */ | |
| 36 | 0 | public IRunnerCreationException(String message) { |
| 37 | 0 | super(message); |
| 38 | } | |
| 39 | ||
| 40 | /** | |
| 41 | * Constructs an IRunnerCreationException with a detailed message. | |
| 42 | * | |
| 43 | * @param message | |
| 44 | * The message associated with the exception. | |
| 45 | * @param root | |
| 46 | * The cause of the exception | |
| 47 | */ | |
| 48 | 0 | public IRunnerCreationException(String message, Throwable root) { |
| 49 | 0 | super(message, root); |
| 50 | } | |
| 51 | } |
|
||||||||||