1 16 package org.apache.commons.lang; 17 18 import org.apache.commons.lang.exception.NestableRuntimeException; 19 20 29 public class SerializationException extends NestableRuntimeException { 30 31 35 public SerializationException() { 36 super(); 37 } 38 39 45 public SerializationException(String msg) { 46 super(msg); 47 } 48 49 56 public SerializationException(Throwable cause) { 57 super(cause); 58 } 59 60 68 public SerializationException(String msg, Throwable cause) { 69 super(msg, cause); 70 } 71 72 } 73 | Popular Tags |