X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=RSM%2Frsmerrors%2Frnib_db_error.go;h=189094d6ed85c1116a855a30753d3f3686d17efe;hb=refs%2Fchanges%2F70%2F2070%2F1;hp=dac4ef951c01d03ee112b983a80d71a31bdc1193;hpb=7b80668df78103cebafdfb7caa0070dc92ed3779;p=ric-plt%2Fresource-status-manager.git diff --git a/RSM/rsmerrors/rnib_db_error.go b/RSM/rsmerrors/rnib_db_error.go index dac4ef9..189094d 100644 --- a/RSM/rsmerrors/rnib_db_error.go +++ b/RSM/rsmerrors/rnib_db_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 @@ -22,9 +25,9 @@ type RnibDbError struct { } func NewRnibDbError() *RnibDbError { - return &RnibDbError { + return &RnibDbError{ &BaseError{ - Code: 500, + Code: 500, Message: "RNIB error", }, } @@ -32,4 +35,4 @@ func NewRnibDbError() *RnibDbError { func (e *RnibDbError) Error() string { return e.Message -} \ No newline at end of file +}