mirror of
https://github.com/esiur/esiur-js.git
synced 2025-05-06 04:22:58 +00:00
error msg
This commit is contained in:
parent
757d949c18
commit
84bf9fa539
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
node_modules/
|
||||
.vscode/
|
||||
test.js
|
||||
test.js
|
||||
ignored/
|
@ -909,7 +909,7 @@ var AsyncException = /*#__PURE__*/function (_Error) {
|
||||
this.type = type;
|
||||
this.code = code;
|
||||
|
||||
if (type == 0) {
|
||||
if (type == 0 && message == null) {
|
||||
for (var i in _ExceptionCode["default"]) {
|
||||
if (_ExceptionCode["default"][i] == code) {
|
||||
this.message = i;
|
||||
@ -10738,9 +10738,9 @@ var WSocket = /*#__PURE__*/function (_ISocket) {
|
||||
rt.trigger(true);
|
||||
};
|
||||
|
||||
ws.onerror = function () {
|
||||
ws.onerror = function (ee) {
|
||||
self.state = _SocketState["default"].Closed;
|
||||
rt.triggerError(_ErrorType["default"].Management, _ExceptionCode["default"].HostNotReachable);
|
||||
rt.triggerError(_ErrorType["default"].Management, _ExceptionCode["default"].HostNotReachable, ee.message);
|
||||
};
|
||||
|
||||
self._assign(ws);
|
||||
|
6986
package-lock.json
generated
6986
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esiur",
|
||||
"version": "2.2.13",
|
||||
"version": "2.2.14",
|
||||
"description": "Distributed Object Framework",
|
||||
"main": "esiur.js",
|
||||
"type": "module",
|
||||
|
@ -50,7 +50,7 @@ export default class AsyncException extends Error
|
||||
this.type = type;
|
||||
this.code = code;
|
||||
|
||||
if (type == 0)
|
||||
if (type == 0 && message == null)
|
||||
{
|
||||
for(var i in ExceptionCode)
|
||||
if (ExceptionCode[i] == code)
|
||||
|
@ -106,9 +106,9 @@ export default class WSocket extends ISocket
|
||||
rt.trigger(true);
|
||||
};
|
||||
|
||||
ws.onerror = () => {
|
||||
ws.onerror = (ee) => {
|
||||
self.state = SocketState.Closed;
|
||||
rt.triggerError(ErrorType.Management, ExceptionCode.HostNotReachable);
|
||||
rt.triggerError(ErrorType.Management, ExceptionCode.HostNotReachable, ee.message);
|
||||
};
|
||||
|
||||
self._assign(ws);
|
||||
|
Loading…
x
Reference in New Issue
Block a user