1 //$Id: SerializationException.java,v 1.1 2004/06/03 16:31:30 steveebersole Exp $2 package org.hibernate.type;3 4 import org.hibernate.HibernateException;5 6 /**7 * Thrown when a property cannot be serializaed/deserialized8 * @author Gavin King9 */10 public class SerializationException extends HibernateException {11 12 public SerializationException(String message, Exception root) {13 super(message, root);14 }15 16 }17 18 19 20 21 22 23