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

aquality.tracking.integrations.core.AqualityUncheckedException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package aquality.tracking.integrations.core;

import java.io.IOException;

public class AqualityUncheckedException extends RuntimeException {

    public AqualityUncheckedException(String message, IOException cause) {
        super(message, cause);
    }

    public AqualityUncheckedException(String message, Exception cause) {
        super(message, cause);
    }

    public AqualityUncheckedException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy