SerializationException.java

  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.  *      http://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.  * Exception thrown when the Serialization process fails.
  20.  *
  21.  * <p>The original error is wrapped within this one.</p>
  22.  *
  23.  * <p>#NotThreadSafe# because Throwable is not thread-safe</p>
  24.  * @since 1.0
  25.  */
  26. public class SerializationException extends RuntimeException {

  27.     /**
  28.      * Required for serialization support.
  29.      *
  30.      * @see java.io.Serializable
  31.      */
  32.     private static final long serialVersionUID = 4029025366392702726L;

  33.     /**
  34.      * Constructs a new {@link SerializationException} without specified
  35.      * detail message.
  36.      */
  37.     public SerializationException() {
  38.     }

  39.     /**
  40.      * Constructs a new {@link SerializationException} with specified
  41.      * detail message.
  42.      *
  43.      * @param msg  The error message.
  44.      */
  45.     public SerializationException(final String msg) {
  46.         super(msg);
  47.     }

  48.     /**
  49.      * Constructs a new {@link SerializationException} with specified
  50.      * detail message and nested {@link Throwable}.
  51.      *
  52.      * @param msg    The error message.
  53.      * @param cause  The {@link Exception} or {@link Error}
  54.      *  that caused this exception to be thrown.
  55.      */
  56.     public SerializationException(final String msg, final Throwable cause) {
  57.         super(msg, cause);
  58.     }

  59.     /**
  60.      * Constructs a new {@link SerializationException} with specified
  61.      * nested {@link Throwable}.
  62.      *
  63.      * @param cause  The {@link Exception} or {@link Error}
  64.      *  that caused this exception to be thrown.
  65.      */
  66.     public SerializationException(final Throwable cause) {
  67.         super(cause);
  68.     }

  69. }