mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
17 lines
412 B
JavaScript
17 lines
412 B
JavaScript
'use strict';
|
|
|
|
import invariant from 'invariant';
|
|
|
|
const ReactError = {
|
|
throws(err) {
|
|
if(!err.handler) {
|
|
invariant(err.handler, 'Error thrown to ReactError did not have a `handler` function');
|
|
console.logGlobal('Error thrown to ReactError did not have a `handler` function');
|
|
} else {
|
|
err.handler(this, err);
|
|
}
|
|
}
|
|
};
|
|
|
|
export default ReactError;
|