blob: e2568df00c6d6d47861c2d5fbea7deb9e08a40cb [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* 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.android.bedstead.nene.exceptions;
/** An exception that gets thrown when an error occurred parsing Adb output. */
public class AdbParseException extends Exception {
private final String adbOutput;
public AdbParseException(String message, String adbOutput) {
super(message);
if (message == null || adbOutput == null) {
throw new NullPointerException();
}
this.adbOutput = adbOutput;
}
public AdbParseException(String message, String adbOutput, Throwable cause) {
super(message, cause);
if (message == null || adbOutput == null || cause == null) {
throw new NullPointerException();
}
this.adbOutput = adbOutput;
}
public String adbOutput() {
return adbOutput;
}
@Override
public String toString() {
return super.toString() + "[output=\"" + adbOutput + "\"]";
}
}