Adding new comments for Oran in all files with licenses
[ric-plt/e2mgr.git] / E2Manager / e2managererrors / request_validation_error.go
index 2029aa7..4d833c4 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 RequestValidationError struct {
-       Err BaseError
+       *BaseError
 }
 
 func NewRequestValidationError() *RequestValidationError {
        return &RequestValidationError{
-               BaseError{
+               &BaseError{
                        Code:    402,
                        Message: "Validation error",
                },
@@ -31,5 +34,5 @@ func NewRequestValidationError() *RequestValidationError {
 }
 
 func (e *RequestValidationError) Error() string {
-       return e.Err.Message
+       return e.Message
 }