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

com.kanishka.virustotal.exception.QuotaExceededException Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.kanishka.virustotal.exception;

/**
 *
 * @author [email protected]
 */
public class QuotaExceededException extends Exception {

    public QuotaExceededException() {
    }

    public QuotaExceededException(String string) {
        super(string);
    }

    public QuotaExceededException(String string, Throwable throwable) {
        super(string, throwable);
    }

    public QuotaExceededException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy