|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
NotSerializableErrorException.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 | import java.io.Serializable; | |
10 | ||
11 | /** | |
12 | * This exception is used by the JTR runtime whenever a caught exception is not | |
13 | * serializable and thus could not be sent over the network from a JTR "naked" | |
14 | * node to a JTR "controller" node in a distributed scenario. | |
15 | * | |
16 | * @author frusso | |
17 | * @version 4.0 | |
18 | * @since 4.0 | |
19 | */ | |
20 | public class NotSerializableErrorException extends Exception implements Serializable { | |
21 | ||
22 | /** Creates a new instance of NotSerializableErrorException */ | |
23 | 0 | public NotSerializableErrorException(String msg, Throwable t) { |
24 | 0 | super(msg,t); |
25 | } | |
26 | } |
|