X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=E2Manager%2Fe2managererrors%2Frmr_error.go;h=4f6bffddfe55817bb6a43b86487f4af03c4e83a6;hb=d287336cfb4d5c74634fe7af38e7d5e9265671e4;hp=fca2a8aea3bbd6db7ffb72ad1937b86a0bf7e9a9;hpb=f9e31bbb0a80ae78cf72eabea8303c28abcdb2e8;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/e2managererrors/rmr_error.go b/E2Manager/e2managererrors/rmr_error.go index fca2a8a..4f6bffd 100644 --- a/E2Manager/e2managererrors/rmr_error.go +++ b/E2Manager/e2managererrors/rmr_error.go @@ -13,17 +13,20 @@ // 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. -// + +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). + package e2managererrors type RmrError struct { - Err BaseError + *BaseError } func NewRmrError() *RmrError { return &RmrError{ - BaseError{ + &BaseError{ Code: 502, Message: "RMR error", }, @@ -31,5 +34,5 @@ func NewRmrError() *RmrError { } func (e *RmrError) Error() string { - return e.Err.Message + return e.Message }