All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.link_intersystems.util.SerializationException Maven / Gradle / Ivy

Go to download

There is a newer version: 1.9.7
Show newest version
package com.link_intersystems.util;

/**
 * @author René Link {@literal }
 */
public class SerializationException extends RuntimeException {
    public SerializationException(String msg, Throwable cause) {
        super(msg, cause);
    }

    public SerializationException(String msg) {
        super(msg);
    }

    public SerializationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy