Merge "Copy latest code"
[ric-plt/e2mgr.git] / E2Manager / e2managererrors / resource_not_found.go
index a69f73e..d73118b 100644 (file)
 // 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 ResourceNotFoundError struct {
-       Err BaseError
+       *BaseError
 }
 
 func NewResourceNotFoundError() *ResourceNotFoundError {
        return &ResourceNotFoundError{
-               BaseError{
+               &BaseError{
                        Code:    404,
                        Message: "Resource not found",
                },
@@ -31,5 +34,5 @@ func NewResourceNotFoundError() *ResourceNotFoundError {
 }
 
 func (e *ResourceNotFoundError) Error() string {
-       return e.Err.Message
+       return e.Message
 }