com.versionone.apiclient.exceptions.MetaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
A library for custom Java development against the VersionOne Development Platform's REST API.
package com.versionone.apiclient.exceptions;
/**
* Indicate an unrecoverable error with MetaData
*/
public class MetaException extends RuntimeException {
private static final long serialVersionUID = 1L;
public MetaException(String message, String token) {
this(message + ": " + token);
}
public MetaException(String message, String token, Exception inner) {
this(message + ": " + token, inner);
}
public MetaException(String message) {
super(message);
}
public MetaException(String message, Exception inner) {
super(message, inner);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy