Merge "Copy latest code"
[ric-plt/e2mgr.git] / E2Manager / e2managererrors / command_already_in_progress.go
index c6167ac..655710b 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 CommandAlreadyInProgressError struct {
-       Err BaseError
+       *BaseError
 }
 
 func NewCommandAlreadyInProgressError() *CommandAlreadyInProgressError {
        return &CommandAlreadyInProgressError {
-               BaseError{
+               &BaseError{
                        Code: 405,
                        Message: "Command already in progress",
                },
@@ -31,6 +34,6 @@ func NewCommandAlreadyInProgressError() *CommandAlreadyInProgressError {
 }
 
 func (e *CommandAlreadyInProgressError) Error() string {
-       return e.Err.Message
+       return e.Message
 }