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

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


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