[RICPLT-2813] Update Swagger: /e2t/list
[ric-plt/e2mgr.git] / E2Manager / e2managererrors / resource_not_found.go
index a69f73e..aed97ef 100644 (file)
 package e2managererrors
 
 type ResourceNotFoundError struct {
-       Err BaseError
+       *BaseError
 }
 
 func NewResourceNotFoundError() *ResourceNotFoundError {
        return &ResourceNotFoundError{
-               BaseError{
+               &BaseError{
                        Code:    404,
                        Message: "Resource not found",
                },
@@ -31,5 +31,5 @@ func NewResourceNotFoundError() *ResourceNotFoundError {
 }
 
 func (e *ResourceNotFoundError) Error() string {
-       return e.Err.Message
+       return e.Message
 }