
org.jboss.jbossts.star.client.InvalidSRAId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restat-api Show documentation
Show all versions of restat-api Show documentation
A JAX-RS service that implements the RESTAT specification
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.jbossts.star.client;
import jakarta.ws.rs.WebApplicationException;
public class InvalidSRAId extends WebApplicationException {
public InvalidSRAId(String sraId, String message, Throwable cause) {
super(String.format("%s: %s", sraId, message), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy