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

com.github.rauberprojects.client.context.factory.ContextCreationException Maven / Gradle / Ivy

package com.github.rauberprojects.client.context.factory;

public class ContextCreationException extends RuntimeException {
    public ContextCreationException() {
    }

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

    public ContextCreationException(String message, Throwable cause) {
        super(message, cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy