1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package org.apache.commons.lang3;
18
19 /**
20 * Exception thrown when the Serialization process fails.
21 *
22 * <p>The original error is wrapped within this one.</p>
23 *
24 * <p>#NotThreadSafe# because Throwable is not thread-safe</p>
25 * @since 1.0
26 */
27 public class SerializationException extends RuntimeException {
28
29 /**
30 * Required for serialization support.
31 *
32 * @see java.io.Serializable
33 */
34 private static final long serialVersionUID = 4029025366392702726L;
35
36 /**
37 * Constructs a new {@link SerializationException} without specified
38 * detail message.
39 */
40 public SerializationException() {
41 }
42
43 /**
44 * Constructs a new {@link SerializationException} with specified
45 * detail message.
46 *
47 * @param msg The error message.
48 */
49 public SerializationException(final String msg) {
50 super(msg);
51 }
52
53 /**
54 * Constructs a new {@link SerializationException} with specified
55 * detail message and nested {@link Throwable}.
56 *
57 * @param msg The error message.
58 * @param cause The {@link Exception} or {@link Error}
59 * that caused this exception to be thrown.
60 */
61 public SerializationException(final String msg, final Throwable cause) {
62 super(msg, cause);
63 }
64
65 /**
66 * Constructs a new {@link SerializationException} with specified
67 * nested {@link Throwable}.
68 *
69 * @param cause The {@link Exception} or {@link Error}
70 * that caused this exception to be thrown.
71 */
72 public SerializationException(final Throwable cause) {
73 super(cause);
74 }
75
76 }