Adding E2M reassoc of E2T when its already in DB
[ric-plt/e2mgr.git] / E2Manager / e2managererrors / header_validation_error.go
index 9c2d8ef..95d0f5b 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 HeaderValidationError struct {
-       Err BaseError
+       *BaseError
 }
 
 func NewHeaderValidationError() *HeaderValidationError {
        return &HeaderValidationError {
-               BaseError{
+               &BaseError{
                        Code: 415,
                        Message: "Header validation error",
                },
@@ -31,5 +34,5 @@ func NewHeaderValidationError() *HeaderValidationError {
 }
 
 func (e *HeaderValidationError) Error() string {
-       return e.Err.Message
+       return e.Message
 }