blob: 0c0319fb9f7bf2b70ae5a79d25468b4f66ade2f6 [file] [log] [blame]
// Copyright (c) 2019, the Dart 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.
import 'package:analyzer/error/error.dart';
/// A superclass for error codes that can have a URL associated with them.
abstract class AnalyzerErrorCode extends ErrorCode {
/// Initialize a newly created error code.
const AnalyzerErrorCode({
super.correctionMessage,
super.hasPublishedDocs,
super.isUnresolvedIdentifier,
required super.name,
required super.problemMessage,
required super.uniqueName,
});
}