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

com.codepoetics.octarine.json.serialisation.SerialisationException Maven / Gradle / Ivy

There is a newer version: 0.18
Show newest version
package com.codepoetics.octarine.json.serialisation;


import java.io.IOException;

public class SerialisationException extends RuntimeException {

    public SerialisationException(IOException cause) {
        super(cause);
    }

    public IOException getIOExceptionCause() {
        return (IOException) getCause();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy