com.versionone.om.SDKException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VersionOne.SDK.Java.ObjectModel Show documentation
Show all versions of VersionOne.SDK.Java.ObjectModel Show documentation
A strongly-typed object model library on top of the VersionOne SDK.Java API Client library.
The newest version!
/*(c) Copyright 2008, VersionOne, Inc. All rights reserved. (c)*/
package com.versionone.om;
/**
* Base Exception for SDK Exceptions.
*/
public class SDKException extends RuntimeException {
static final long serialVersionUID = 1L;
public SDKException(String message) {
super(message);
}
public SDKException(Throwable cause) {
super(cause);
}
public SDKException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy