blob: ca24dfb9b6d58ba453404cbc6b3208299842c47d [file] [log] [blame]
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.skyframe;
import com.google.common.base.Strings;
import com.google.devtools.build.lib.server.FailureDetails;
import com.google.devtools.build.lib.server.FailureDetails.FailureDetail;
import com.google.devtools.build.lib.server.FailureDetails.Toolchain.Code;
import com.google.devtools.build.lib.util.DetailedExitCode;
/** Base class for exceptions that happen during toolchain resolution. */
public abstract class ToolchainException extends Exception implements DetailedException {
public ToolchainException(String message) {
super(message);
}
public ToolchainException(Throwable cause) {
super(cause);
}
public ToolchainException(String message, Throwable cause) {
super(message, cause);
}
protected abstract Code getDetailedCode();
@Override
public DetailedExitCode getDetailedExitCode() {
if (getCause() instanceof DetailedException) {
return ((DetailedException) getCause()).getDetailedExitCode();
}
return DetailedExitCode.of(
FailureDetail.newBuilder()
.setMessage(Strings.nullToEmpty(getMessage()))
.setToolchain(FailureDetails.Toolchain.newBuilder().setCode(getDetailedCode()))
.build());
}
}