Add header missing license header
[ric-plt/resource-status-manager.git] / RSM / rsmerrors / wrong_state_error.go
index 7f5232b..6f38b07 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 rsmerrors
 
@@ -27,7 +30,7 @@ func NewWrongStateError(activityName string, state string) *WrongStateError {
        return &WrongStateError{
                &BaseError{
                        Code:    403,
-                       Message: fmt.Sprintf("Activity %s rejected. RAN current state %s does not allow its execution ", activityName, state) ,
+                       Message: fmt.Sprintf("Activity %s rejected. RAN current state %s does not allow its execution ", activityName, state),
                },
        }
 }