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

com.elopteryx.paint.upload.errors.UploadSizeException Maven / Gradle / Ivy

package com.elopteryx.paint.upload.errors;

/**
 * Base class for the size related exceptions.
 */
public abstract class UploadSizeException extends RuntimeException {

    /**
     * The actual size.
     */
    private final long actual;

    /**
     * The maximum permitted size.
     */
    private final long permitted;

    /**
     * Creates a new instance.
     *
     * @param message   The detail message.
     * @param actual    The actual number of bytes.
     * @param permitted The size limit, in bytes.
     */
    UploadSizeException(String message, long actual, long permitted) {
        super(message);
        this.actual = actual;
        this.permitted = permitted;
    }

    /**
     * Retrieves the actual size.
     *
     * @return The actual size.
     */
    public long getActualSize() {
        return actual;
    }

    /**
     * Retrieves the permitted size.
     *
     * @return The permitted size.
     */
    public long getPermittedSize() {
        return permitted;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy