Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 6 of 6) sorted by relevance

/unit/src/java/javax/websocket/
H A DSendResult.java20 private final Throwable exception; field in SendResult
23 public SendResult(Throwable exception) { in SendResult() argument
24 this.exception = exception; in SendResult()
25 this.ok = (exception == null); in SendResult()
33 return exception; in getException()
/unit/src/nodejs/unit-http/
H A Dnxt_napi.h34 struct exception { struct
35 exception(const char *s) : str(s) { } in exception() function
52 throw exception("Failed to coerce to string"); in coerce_to_string()
67 throw exception("Failed to create buffer"); in create_buffer()
104 throw exception("Failed to create object"); in create_object()
162 throw exception("Failed to define class"); in define_class()
261 throw exception("Failed to get element"); in get_element()
358 throw exception("Failed to get bool"); in get_value_bool()
681 throw_error(const exception &e) in throw_error()
710 throw exception("Failed to unwrap"); in unwrap()
[all …]
H A Dunit.cpp195 } catch (exception &e) { in init()
237 } catch (exception &e) { in create()
261 } catch (exception &e) { in create_server()
338 } catch (exception &e) { in request_handler()
379 } catch (exception &e) { in websocket_handler()
424 } catch (exception &e) { in close_handler()
464 } catch (exception &e) { in shm_ack_handler()
562 } catch (exception &e) { in quit()
778 } catch (exception &e) { in request_read()
917 } catch (exception &e) { in response_send_headers()
[all …]
H A Dsocket.js56 Socket.prototype.destroy = function destroy(exception) { argument
/unit/test/unit/
H A Dlog.py15 except AssertionError as exception:
17 raise exception
/unit/src/java/nginx/unit/
H A DContext.java2994 public void log(Exception exception, String msg)
2996 log(msg, exception);