X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fe2managererrors%2Finternal_error.go;h=5fedc87eceba6ceb535791a76e87f22547387094;hb=2c993df4610ecefe9a5d31d12c6cfbb9ac8b6cfd;hp=24fa773e4d3ea2fa3e7c7ad9a56ab3539faf3ce0;hpb=07ef76dd471a0892a893c90e0ab06713aee34be1;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/e2managererrors/internal_error.go b/E2Manager/e2managererrors/internal_error.go index 24fa773..5fedc87 100644 --- a/E2Manager/e2managererrors/internal_error.go +++ b/E2Manager/e2managererrors/internal_error.go @@ -13,17 +13,20 @@ // 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 e2managererrors type InternalError struct { - Err BaseError + *BaseError } func NewInternalError() *InternalError { return &InternalError { - BaseError{ + &BaseError{ Code: 501, Message: "Internal Server Error. Please try again later", }, @@ -31,5 +34,5 @@ func NewInternalError() *InternalError { } func (e *InternalError) Error() string { - return e.Err.Message + return e.Message }