X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=RSM%2Frsmerrors%2Fwrong_state_error.go;h=6f38b07442ee296600c2102682d36ab2bd7b0a36;hb=4dc2959434210acfe738164d3b64ab76b5d0fd2a;hp=7f5232b960155391eca8d24b2b65f1fa288a509d;hpb=7b80668df78103cebafdfb7caa0070dc92ed3779;p=ric-plt%2Fresource-status-manager.git diff --git a/RSM/rsmerrors/wrong_state_error.go b/RSM/rsmerrors/wrong_state_error.go index 7f5232b..6f38b07 100644 --- a/RSM/rsmerrors/wrong_state_error.go +++ b/RSM/rsmerrors/wrong_state_error.go @@ -13,7 +13,10 @@ // 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), }, } }