Example usage for com.amazonaws.services.codedeploy.model ErrorInformation getMessage

List of usage examples for com.amazonaws.services.codedeploy.model ErrorInformation getMessage

Introduction

In this page you can find the example usage for com.amazonaws.services.codedeploy.model ErrorInformation getMessage.

Prototype


public String getMessage() 

Source Link

Document

An accompanying error message.

Usage

From source file:jetbrains.buildServer.runner.codedeploy.AWSClient.java

License:Apache License

@Contract("null -> null")
@Nullable// w w  w  . j a v  a2s.  c o m
private Listener.ErrorInfo getErrorInfo(@Nullable DeploymentInfo dInfo) {
    if (dInfo == null)
        return null;

    final ErrorInformation errorInformation = dInfo.getErrorInformation();
    if (errorInformation == null)
        return null;

    final Listener.ErrorInfo errorInfo = new Listener.ErrorInfo();
    errorInfo.message = removeTrailingDot(errorInformation.getMessage());
    errorInfo.code = errorInformation.getCode();
    return errorInfo;
}