@sap/xsodata
Version:
Expose data from a HANA database as OData V2 service with help of .xsodata files.
22 lines (18 loc) • 487 B
JavaScript
;
var util = require('util');
var InternalError = require('./internalError');
module.exports = ModelFileError;
/**
* Error during type convertion
* @param message
* @param context
* @param cause
* @param information
* @constructor
*/
function ModelFileError(message, context, cause, information) {
InternalError.call(this, message, context,cause);
this.message = message;
this.information = information;
}
util.inherits(ModelFileError, InternalError);