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

com.versionone.apiclient.exceptions.V1Exception Maven / Gradle / Ivy

Go to download

A library for custom Java development against the VersionOne Development Platform's REST API.

There is a newer version: 16.1.3
Show newest version
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