com.kanishka.virustotal.exception.InvalidArgumentsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VirustotalPublicV2.0 Show documentation
Show all versions of VirustotalPublicV2.0 Show documentation
Please refer to
https://github.com/kdkanishka/Virustotal-Public-API-V2.0-Client
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 InvalidArgumentsException extends Exception {
public InvalidArgumentsException() {
}
public InvalidArgumentsException(String string) {
super(string);
}
public InvalidArgumentsException(String string, Throwable throwable) {
super(string, throwable);
}
public InvalidArgumentsException(Throwable throwable) {
super(throwable);
}
}