com.versionone.apiclient.exceptions.V1Exception 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;
/**
* Base class for all VersionOne Java SDK exceptions
*/
public class V1Exception extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Create with just a message. Used when the exception is internal.
*
* @param message - String
*/
public V1Exception(String message) {
super(message);
}
/**
* Create with a message and nested exception. Used when an exception is being re-thrown
*
* @param message - String
* @param innerException - Exception
*/
public V1Exception(String message, Exception innerException) {
super(message, innerException);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy