Search in sources :

Example 11 with ErrorCode

use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.

the class ErrorCodeRegistry method getAppSavingError.

/**
 * @return
 */
public static ErrorCode getAppSavingError() {
    ErrorCode err = new ErrorCode();
    err.setCode(516);
    err.setName("Failed to save app to local disk");
    err.setDescription(defaultBundle.getString("Error.app.appsaving"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 12 with ErrorCode

use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.

the class ErrorCodeRegistry method getFileSigningError.

/**
 * @return
 */
public static ErrorCode getFileSigningError() {
    ErrorCode err = new ErrorCode();
    err.setCode(521);
    err.setName("Error signing file");
    err.setDescription(defaultBundle.getString("Error.app.filesigning"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 13 with ErrorCode

use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.

the class ErrorCodeRegistry method getDeviceInfoIssue.

/**
 * Device Info Issue
 * @return
 */
public static ErrorCode getDeviceInfoIssue() {
    ErrorCode err = new ErrorCode();
    err.setCode(509);
    err.setName("Device Info Issue");
    err.setDescription(defaultBundle.getString("Error.deviceinfoissue"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 14 with ErrorCode

use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.

the class ErrorCodeRegistry method getFailedRetrieveDeviceData.

/**
 * Failed to retrieve iOS device data
 * @return
 */
public static ErrorCode getFailedRetrieveDeviceData(String description) {
    ErrorCode err = new ErrorCode();
    err.setCode(514);
    err.setName("Failed to retrieve iOS device data");
    err.setDescription(description);
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 15 with ErrorCode

use of com.att.aro.core.pojo.ErrorCode in project VideoOptimzer by attdevsupport.

the class ErrorCodeRegistry method getRVIDropIssue.

/**
 * RVI Drop Issue
 * @return
 */
public static ErrorCode getRVIDropIssue() {
    ErrorCode err = new ErrorCode();
    err.setCode(529);
    err.setName("RVI Issue. XCode dropped the RVI connection ");
    err.setDescription(defaultBundle.getString("Error.rvidropissue"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Aggregations

ErrorCode (com.att.aro.core.pojo.ErrorCode)78 ImHereThread (com.att.aro.console.printstreamutils.ImHereThread)1 OutSave (com.att.aro.console.printstreamutils.OutSave)1 IAROService (com.att.aro.core.IAROService)1 TsharkException (com.att.aro.core.exception.TsharkException)1 IFileManager (com.att.aro.core.fileio.IFileManager)1 AROTraceData (com.att.aro.core.pojo.AROTraceData)1 IOException (java.io.IOException)1