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

com.versionone.apiclient.exceptions.MetaException 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;

/**
 * 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