blob: 3886317c44cb3819cb2e3b5b00133c1399aeb200 [file] [log] [blame]
// Copyright (c) 2025, 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.processkeeprules;
import com.android.tools.r8.keepanno.annotations.KeepForApi;
import com.android.tools.r8.origin.Origin;
import com.android.tools.r8.position.Position;
@KeepForApi
public class KeepAttributeLibraryConsumerRuleDiagnostic extends ConsumerRuleDiagnostic {
private final String attribute;
KeepAttributeLibraryConsumerRuleDiagnostic(Origin origin, Position position, String attribute) {
super(origin, position);
this.attribute = attribute;
}
@Override
public String getDiagnosticMessage() {
return "Illegal attempt to keep the attribute '" + attribute + "' in library consumer rules.";
}
}