001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      https://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.lang3;
018
019/**
020 * Exception thrown when the Serialization process fails.
021 *
022 * <p>The original error is wrapped within this one.</p>
023 *
024 * <p>#NotThreadSafe# because Throwable is not thread-safe</p>
025 *
026 * @since 1.0
027 */
028public class SerializationException extends RuntimeException {
029
030    /**
031     * Required for serialization support.
032     *
033     * @see java.io.Serializable
034     */
035    private static final long serialVersionUID = 4029025366392702726L;
036
037    /**
038     * Constructs a new {@link SerializationException} without specified
039     * detail message.
040     */
041    public SerializationException() {
042    }
043
044    /**
045     * Constructs a new {@link SerializationException} with specified
046     * detail message.
047     *
048     * @param msg  The error message.
049     */
050    public SerializationException(final String msg) {
051        super(msg);
052    }
053
054    /**
055     * Constructs a new {@link SerializationException} with specified
056     * detail message and nested {@link Throwable}.
057     *
058     * @param msg    The error message.
059     * @param cause  The {@link Exception} or {@link Error}
060     *  that caused this exception to be thrown.
061     */
062    public SerializationException(final String msg, final Throwable cause) {
063        super(msg, cause);
064    }
065
066    /**
067     * Constructs a new {@link SerializationException} with specified
068     * nested {@link Throwable}.
069     *
070     * @param cause  The {@link Exception} or {@link Error}
071     *  that caused this exception to be thrown.
072     */
073    public SerializationException(final Throwable cause) {
074        super(cause);
075    }
076
077}