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

com.aeontronix.commons.io.ContentTooLargeException Maven / Gradle / Ivy

/*
 * Copyright (c) 2014 Kloudtek Ltd
 */

package com.aeontronix.commons.io;

/**
 * Exception thrown when provided content is too large
 */
public class ContentTooLargeException extends Exception {
    private static final long serialVersionUID = -8040146589049029793L;

    public ContentTooLargeException() {
    }

    public ContentTooLargeException(String message) {
        super(message);
    }

    public ContentTooLargeException(String message, Throwable cause) {
        super(message, cause);
    }

    public ContentTooLargeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy