2018-11-29 02:25:20 +00:00
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package proto
|
|
|
|
|
2019-04-01 20:31:55 +00:00
|
|
|
import (
|
2020-01-17 21:40:51 +00:00
|
|
|
"google.golang.org/protobuf/internal/errors"
|
2019-05-14 06:55:40 +00:00
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
2019-04-01 20:31:55 +00:00
|
|
|
)
|
2018-11-29 02:25:20 +00:00
|
|
|
|
|
|
|
// Message is the top-level interface that all messages must implement.
|
|
|
|
type Message = protoreflect.ProtoMessage
|
2020-01-17 21:40:51 +00:00
|
|
|
|
|
|
|
// Error matches all errors produced by packages in the protobuf module.
|
|
|
|
//
|
|
|
|
// That is, errors.Is(err, Error) reports whether an error is produced
|
|
|
|
// by this module.
|
|
|
|
var Error error
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Error = errors.Error
|
|
|
|
}
|