RIC-11566: Add support for Multiple E2 Nodes: CU/DU for the case having same GNBId
[ric-plt/nodeb-rnib.git] / common / internalError.go
index 386c5e2..eaaae66 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 common
 
 type InternalError struct{
-       err error
+       Err error
 }
 
 func NewInternalError(error error) error {
-       return &InternalError{err:error}
+       return &InternalError{Err:error}
 }
 
 func (e InternalError) Error() string {
-       return e.err.Error()
+       return e.Err.Error()
 }