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

no.difi.sdp.client2.domain.exceptions.RuntimeIOException Maven / Gradle / Ivy

There is a newer version: 7.0.0-RC2
Show newest version
package no.difi.sdp.client2.domain.exceptions;

import java.io.IOException;

/**
 * Wrapper for IOExceptions i situasjoner der det er ingen/liten praktisk grunn til å anta at en IOException kan oppstå (f.eks. minnerepresentasjoner av streams).
 */
public class RuntimeIOException extends SikkerDigitalPostException {

    public RuntimeIOException(IOException e) {
        super(e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy