use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.
the class ErrorCodeRegistry method getOutputRequired.
public static ErrorCode getOutputRequired() {
ErrorCode err = new ErrorCode();
err.setCode(301);
err.setName("Output location missing");
err.setDescription("location to save data to was not given.");
sendGAErrorCode(err);
return err;
}
use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.
the class ErrorCodeRegistry method getNetworkNotActivatedError.
public static ErrorCode getNetworkNotActivatedError() {
ErrorCode err = new ErrorCode();
err.setCode(312);
err.setName("No Internet sharing detected");
err.setDescription("Please turn on the WIFI sharing!");
sendGAErrorCode(err);
return err;
}
use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.
the class ErrorCodeRegistry method getUnsupportedFormat.
public static ErrorCode getUnsupportedFormat() {
ErrorCode err = new ErrorCode();
err.setCode(302);
err.setName("Unsupported report format");
err.setDescription("Report format entered is not supported. Type --help to see supported commands and options.");
sendGAErrorCode(err);
return err;
}
Aggregations