com.github.eliux.mega.error.MegaIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of megacmd4j Show documentation
Show all versions of megacmd4j Show documentation
Java client library that works on top of MEGAcmd to provide access to the services of Mega.nz
package com.github.eliux.mega.error;
public class MegaIOException extends RuntimeException{
public MegaIOException(String message){
super(message);
}
public MegaIOException(String message, String... args) {
this(String.format(message, args));
}
public MegaIOException(){
this("Error while connecting to Mega services");
}
}