JSONError.js 78 B

123456
  1. const JSONError = (msg) => {
  2. return {
  3. msg
  4. };
  5. }
  6. module.exports = JSONError;