MCPcopy Index your code
hub / github.com/Macuyiko/minecraft-python / DOMException

Function DOMException

ServerEditorWeb/ace/worker-xml.js:1902–1914  ·  view source on GitHub ↗
(code, message)

Source from the content-addressed store, hash-verified

1900
1901
1902function DOMException(code, message) {
1903 if(message instanceof Error){
1904 var error = message;
1905 }else{
1906 error = this;
1907 Error.call(this, ExceptionMessage[code]);
1908 this.message = ExceptionMessage[code];
1909 if(Error.captureStackTrace) Error.captureStackTrace(this, DOMException);
1910 }
1911 error.code = code;
1912 if(message) this.message = this.message + ": " + message;
1913 return error;
1914};
1915DOMException.prototype = Error.prototype;
1916copy(ExceptionCode,DOMException)
1917function NodeList() {

Callers 1

_removeNamedNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected