|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| RmiUtilException.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.remote.utils; | |
| 8 | ||
| 9 | /** | |
| 10 | * This unchecked exception is thrown whenever an unrecoverable exception | |
| 11 | * is met by the <code>RmiUtil</code> class. | |
| 12 | * | |
| 13 | * @author frusso | |
| 14 | * @version 4.0 | |
| 15 | * @since 4.0 | |
| 16 | */ | |
| 17 | public class RmiUtilException extends RuntimeException { | |
| 18 | ||
| 19 | 0 | public RmiUtilException(String msg, Throwable cause) { |
| 20 | 0 | super(msg,cause); |
| 21 | } | |
| 22 | } |
|
||||||||||