blob: 060699eeb0c2194fec3cc2c7742a73acafde509f [file] [log] [blame]
// Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.errors;
/**
* Exception to signal an compilation error.
*
* This is always an expected error and considered a user input issue.
* A user-understandable message must be provided.
*/
public class CompilationError extends RuntimeException {
public CompilationError(String message) {
super(message);
}
public CompilationError(String message, Throwable cause) {
super(message, cause);
}
}