network.oxalis.as4.lang.AS4Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oxalis-as4 Show documentation
Show all versions of oxalis-as4 Show documentation
Extension adding AS4 support to Oxalis
package network.oxalis.as4.lang;
import network.oxalis.as4.util.AS4ErrorCode;
public interface AS4Error {
AS4ErrorCode getErrorCode();
AS4ErrorCode.Severity getSeverity();
String getMessage();
Exception getException();
}