Search in sources :

Example 51 with ErrorCode

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

the class ErrorCodeRegistry method getiOSUnsupportedVersion.

/**
 * Unsupported iOS version
 * @return
 */
public static ErrorCode getiOSUnsupportedVersion() {
    ErrorCode err = new ErrorCode();
    err.setCode(511);
    err.setName("iOS Unsupported Version");
    err.setDescription(MessageFormat.format(defaultBundle.getString("Error.iosunsupportedversion"), ApplicationConfig.getInstance().getAppShortName()));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 52 with ErrorCode

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

the class ErrorCodeRegistry method getProvProfileileExpiredError.

/**
 * @return
 */
public static ErrorCode getProvProfileileExpiredError() {
    ErrorCode err = new ErrorCode();
    err.setCode(524);
    err.setName("Provisioning profile expired");
    err.setDescription(defaultBundle.getString("Error.app.provprofileexpired"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 53 with ErrorCode

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

the class ErrorCodeRegistry method getXCodeCLTError.

/**
 * multiple xcode command line tool installed mismatch
 * @return
 */
public static ErrorCode getXCodeCLTError() {
    ErrorCode err = new ErrorCode();
    err.setCode(515);
    err.setName("Multiple Xcode Command Line Tools installed mismatch");
    err.setDescription("You have multiple xcode versions. You will need to configure command-line tools.\nPlease use 'sudo xcode-select -s /PATH/To/Xcode.app'.");
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 54 with ErrorCode

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

the class ErrorCodeRegistry method getrviError.

/**
 * Remote virtual interface
 * @return
 */
public static ErrorCode getrviError() {
    ErrorCode err = new ErrorCode();
    err.setCode(512);
    err.setName("rvi error");
    err.setDescription(defaultBundle.getString("Error.rvierror"));
    sendGAErrorCode(err);
    return err;
}
Also used : ErrorCode(com.att.aro.core.pojo.ErrorCode)

Example 55 with ErrorCode

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

the class ErrorCodeRegistry method getDeviceVersionIssue.

/**
 * Device Version Issue
 * @return
 */
public static ErrorCode getDeviceVersionIssue() {
    ErrorCode err = new ErrorCode();
    err.setCode(510);
    err.setName("Device Version Issue");
    err.setDescription(defaultBundle.getString("Error.deviceversionissue"));
    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