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

com.structurizr.api.StructurizrClientException Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.structurizr.api;

/**
 * Thrown by the StructurizrClient when something goes wrong.
 */
public final class StructurizrClientException extends Exception {

    private static final long serialVersionUID = 1L;

    StructurizrClientException(String message) {
        super(message);
    }

    StructurizrClientException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy