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

io.sphere.client.ReferenceException Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client;

/** Exception thrown on attempt to access an object inside a non expanded {@link io.sphere.client.model.Reference}. */
public class ReferenceException extends SphereClientException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy