/*
 * SerialisationException.java
 *
 * Created on 14 mars 2003, 16:32
 */

package com.developpez.kit;

/**
 *
 * @author  smeric
 */
public class SerialisationException extends java.lang.RuntimeException {
    
    /**
     * Creates a new instance of <code>SerialisationException</code> without detail message.
     */
    public SerialisationException() {
    }
    
    
    /**
     * Constructs an instance of <code>SerialisationException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public SerialisationException(String msg) {
        super(msg);
    }
}
