UNPKG
@contextjs/system
Version:
beta (25.0.0-beta.4)
latest (25.1.0)
next (25.1.0-next.4)
25.1.0
25.1.0-next.4
25.1.0-next.3
25.1.0-next.2
25.1.0-next.1
25.0.0
25.0.0-beta.4
25.0.0-beta.3
25.0.0-beta.2
25.0.0-beta.1
0.5.3-alpha.1
0.5.2-alpha.1
0.5.1-alpha.1
0.5.0-alpha.1
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
ContextJS - System
github.com/contextjs/context
contextjs/context
@contextjs/system
/
exceptions
/
system.exception.js
8 lines
(7 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
Exception
}
from
"./exception.js"
;
export
class
SystemException
extends
Exception
{
constructor
(
message, options
) {
super
(message ??
"A system error has occurred."
, options);
this
.
name
=
SystemException
.
name
; } }