类 BuilderException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.buildpack.platform.build.BuilderException
所有已实现的接口:
Serializable

public class BuilderException extends RuntimeException
Exception thrown to indicate a Builder error.
从以下版本开始:
4.0
作者:
Scott Frederick, Harry Yang
另请参阅:
  • 字段详细资料

    • operation

      private final String operation
    • statusCode

      private final int statusCode
  • 构造器详细资料

    • BuilderException

      BuilderException(String operation, int statusCode)
  • 方法详细资料

    • getOperation

      public String getOperation()
      Return the Builder operation that failed.
      返回:
      the operation description
    • getStatusCode

      public int getStatusCode()
      Return the status code returned from a Builder operation.
      返回:
      the statusCode the status code
    • buildMessage

      private static String buildMessage(String operation, int statusCode)