equal
deleted
inserted
replaced
37 * server, parameters may have been deserialized. A call may not be |
37 * server, parameters may have been deserialized. A call may not be |
38 * retransmitted after a <code>MarshalException</code> and reliably preserve |
38 * retransmitted after a <code>MarshalException</code> and reliably preserve |
39 * "at most once" call semantics. |
39 * "at most once" call semantics. |
40 * |
40 * |
41 * @author Ann Wollrath |
41 * @author Ann Wollrath |
42 * @since JDK1.1 |
42 * @since 1.1 |
43 */ |
43 */ |
44 public class MarshalException extends RemoteException { |
44 public class MarshalException extends RemoteException { |
45 |
45 |
46 /* indicate compatibility with JDK 1.1.x version of class */ |
46 /* indicate compatibility with JDK 1.1.x version of class */ |
47 private static final long serialVersionUID = 6223554758134037936L; |
47 private static final long serialVersionUID = 6223554758134037936L; |
49 /** |
49 /** |
50 * Constructs a <code>MarshalException</code> with the specified |
50 * Constructs a <code>MarshalException</code> with the specified |
51 * detail message. |
51 * detail message. |
52 * |
52 * |
53 * @param s the detail message |
53 * @param s the detail message |
54 * @since JDK1.1 |
54 * @since 1.1 |
55 */ |
55 */ |
56 public MarshalException(String s) { |
56 public MarshalException(String s) { |
57 super(s); |
57 super(s); |
58 } |
58 } |
59 |
59 |
61 * Constructs a <code>MarshalException</code> with the specified |
61 * Constructs a <code>MarshalException</code> with the specified |
62 * detail message and nested exception. |
62 * detail message and nested exception. |
63 * |
63 * |
64 * @param s the detail message |
64 * @param s the detail message |
65 * @param ex the nested exception |
65 * @param ex the nested exception |
66 * @since JDK1.1 |
66 * @since 1.1 |
67 */ |
67 */ |
68 public MarshalException(String s, Exception ex) { |
68 public MarshalException(String s, Exception ex) { |
69 super(s, ex); |
69 super(s, ex); |
70 } |
70 } |
71 } |
71 } |