Files
nats.go/services/errors.go
Alberto Ricart 11293d3269 [EXPERIMENTAL] Service framework (#1111)
Signed-off-by: Derek Collison <derek@nats.io>
Co-authored-by: Derek Collison <derek@nats.io>
Co-authored-by: Alberto Ricart Collison <alberto@synadia.com>
Co-authored-by: Piotr Piotrowski <piotr@synadia.com>
2022-10-27 21:14:59 +02:00

26 lines
791 B
Go

// Copyright 2022 The NATS Authors
// 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 services
import "fmt"
type ServiceAPIError struct {
ErrorCode int
Description string
}
func (e *ServiceAPIError) Error() string {
return fmt.Sprintf("%d %s", e.ErrorCode, e.Description)
}