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

io.narayana.lra.client.internal.proxy.InvalidLRAStateException Maven / Gradle / Ivy

There is a newer version: 7.0.2.Final
Show newest version
/*
   Copyright The Narayana Authors
   SPDX-License-Identifier: Apache-2.0
 */

package io.narayana.lra.client.internal.proxy;

public class InvalidLRAStateException extends Exception {
    InvalidLRAStateException() {
        this("Invalid state");
    }

    InvalidLRAStateException(String s) {
        super(s);
    }

    InvalidLRAStateException(String message, Exception e) {
        super(String.format("%s (%s)", message, e.getMessage()), e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy