
com.versionone.apiclient.exceptions.AttachmentLengthException 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 all versions of VersionOne.SDK.Java.APIClient
A library for custom Java development against the VersionOne Development Platform's REST API.
package com.versionone.apiclient.exceptions;
/**
* Exception of attachment length
*/
public class AttachmentLengthException extends V1Exception {
private static final long serialVersionUID = 1L;
/**
* Creating exception object
*
* @param message text of error
*/
public AttachmentLengthException(String message) {
super(message);
}
/**
* Creating exception object
*
* @param message text of error
* @param innerException inner exception
*/
public AttachmentLengthException(String message, Exception innerException) {
super(message, innerException);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy