Errors/InternalServerError.js

/**Copyright (c) 2009-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.**/
"use strict";
/** 
 * Class which defines InternalServerError
 * @memberof mdxWebApiCore.Errors
 * @extends Error
 * */class InternalServerError extends Error{
/**
    * @param {string} message
    */
constructor(r){super(r),this.name="InternalServerError"}}module.exports=InternalServerError;