You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
400 B
27 lines
400 B
/* |
|
MIT License http://www.opensource.org/licenses/mit-license.php |
|
*/ |
|
|
|
"use strict"; |
|
|
|
class ErrorObjectSerializer { |
|
constructor(Type) { |
|
this.Type = Type; |
|
} |
|
|
|
serialize(obj, { write }) { |
|
write(obj.message); |
|
write(obj.stack); |
|
} |
|
|
|
deserialize({ read }) { |
|
const err = new this.Type(); |
|
|
|
err.message = read(); |
|
err.stack = read(); |
|
|
|
return err; |
|
} |
|
} |
|
|
|
module.exports = ErrorObjectSerializer;
|
|
|