Copy latest code to master
[ric-plt/resource-status-manager.git] / RSM / rsmerrors / rnib_db_error.go
index dac4ef9..189094d 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
 
@@ -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
+}