Aktueller Stand
This commit is contained in:
72
backend/node_modules/fastify/lib/errors.js
generated
vendored
72
backend/node_modules/fastify/lib/errors.js
generated
vendored
@@ -47,12 +47,6 @@ const codes = {
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
FST_ERR_VERSION_CONSTRAINT_NOT_STR: createError(
|
||||
'FST_ERR_VERSION_CONSTRAINT_NOT_STR',
|
||||
'Version constraint should be a string.',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
FST_ERR_VALIDATION: createError(
|
||||
'FST_ERR_VALIDATION',
|
||||
'%s',
|
||||
@@ -70,6 +64,12 @@ const codes = {
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
FST_ERR_ERROR_HANDLER_ALREADY_SET: createError(
|
||||
'FST_ERR_ERROR_HANDLER_ALREADY_SET',
|
||||
"Error Handler already set in this scope. Set 'allowErrorHandlerOverride: true' to allow overriding.",
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
|
||||
/**
|
||||
* ContentTypeParser
|
||||
@@ -124,6 +124,11 @@ const codes = {
|
||||
"Body cannot be empty when content-type is set to 'application/json'",
|
||||
400
|
||||
),
|
||||
FST_ERR_CTP_INVALID_JSON_BODY: createError(
|
||||
'FST_ERR_CTP_INVALID_JSON_BODY',
|
||||
"Body is not valid JSON but content-type is set to 'application/json'",
|
||||
400
|
||||
),
|
||||
FST_ERR_CTP_INSTANCE_ALREADY_STARTED: createError(
|
||||
'FST_ERR_CTP_INSTANCE_ALREADY_STARTED',
|
||||
'Cannot call "%s" when fastify instance is already started!',
|
||||
@@ -151,6 +156,14 @@ const codes = {
|
||||
'FST_ERR_DEC_AFTER_START',
|
||||
"The decorator '%s' has been added after start!"
|
||||
),
|
||||
FST_ERR_DEC_REFERENCE_TYPE: createError(
|
||||
'FST_ERR_DEC_REFERENCE_TYPE',
|
||||
"The decorator '%s' of type '%s' is a reference type. Use the { getter, setter } interface instead."
|
||||
),
|
||||
FST_ERR_DEC_UNDECLARED: createError(
|
||||
'FST_ERR_DEC_UNDECLARED',
|
||||
"No decorator '%s' has been declared on %s."
|
||||
),
|
||||
|
||||
/**
|
||||
* hooks
|
||||
@@ -191,7 +204,7 @@ const codes = {
|
||||
|
||||
FST_ERR_HOOK_TIMEOUT: createError(
|
||||
'FST_ERR_HOOK_TIMEOUT',
|
||||
"A callback for '%s' hook timed out. You may have forgotten to call 'done' function or to resolve a Promise"
|
||||
"A callback for '%s' hook%s timed out. You may have forgotten to call 'done' function or to resolve a Promise"
|
||||
),
|
||||
|
||||
/**
|
||||
@@ -209,6 +222,27 @@ const codes = {
|
||||
TypeError
|
||||
),
|
||||
|
||||
FST_ERR_LOG_INVALID_LOGGER_INSTANCE: createError(
|
||||
'FST_ERR_LOG_INVALID_LOGGER_INSTANCE',
|
||||
'loggerInstance only accepts a logger instance.',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
|
||||
FST_ERR_LOG_INVALID_LOGGER_CONFIG: createError(
|
||||
'FST_ERR_LOG_INVALID_LOGGER_CONFIG',
|
||||
'logger options only accepts a configuration object.',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
|
||||
FST_ERR_LOG_LOGGER_AND_LOGGER_INSTANCE_PROVIDED: createError(
|
||||
'FST_ERR_LOG_LOGGER_AND_LOGGER_INSTANCE_PROVIDED',
|
||||
'You cannot provide both logger and loggerInstance. Please provide only one.',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
|
||||
/**
|
||||
* reply
|
||||
*/
|
||||
@@ -222,6 +256,10 @@ const codes = {
|
||||
'FST_ERR_REP_RESPONSE_BODY_CONSUMED',
|
||||
'Response.body is already consumed.'
|
||||
),
|
||||
FST_ERR_REP_READABLE_STREAM_LOCKED: createError(
|
||||
'FST_ERR_REP_READABLE_STREAM_LOCKED',
|
||||
'ReadableStream was locked. You should call releaseLock() method on reader before sending.'
|
||||
),
|
||||
FST_ERR_REP_ALREADY_SENT: createError(
|
||||
'FST_ERR_REP_ALREADY_SENT',
|
||||
'Reply was already sent, did you forget to "return reply" in "%s" (%s)?'
|
||||
@@ -301,14 +339,6 @@ const codes = {
|
||||
'response schemas should be nested under a valid status code, e.g { 2xx: { type: "object" } }'
|
||||
),
|
||||
|
||||
/**
|
||||
* http2
|
||||
*/
|
||||
FST_ERR_HTTP2_INVALID_VERSION: createError(
|
||||
'FST_ERR_HTTP2_INVALID_VERSION',
|
||||
'HTTP2 is available only from node >= 8.8.1'
|
||||
),
|
||||
|
||||
/**
|
||||
* initialConfig
|
||||
*/
|
||||
@@ -339,12 +369,6 @@ const codes = {
|
||||
'Unexpected error from async constraint',
|
||||
500
|
||||
),
|
||||
FST_ERR_DEFAULT_ROUTE_INVALID_TYPE: createError(
|
||||
'FST_ERR_DEFAULT_ROUTE_INVALID_TYPE',
|
||||
'The defaultRoute type should be a function',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
FST_ERR_INVALID_URL: createError(
|
||||
'FST_ERR_INVALID_URL',
|
||||
"URL must be a string. Received '%s'",
|
||||
@@ -429,6 +453,12 @@ const codes = {
|
||||
'FST_ERR_PLUGIN_NOT_PRESENT_IN_INSTANCE',
|
||||
"The decorator '%s'%s is not present in %s"
|
||||
),
|
||||
FST_ERR_PLUGIN_INVALID_ASYNC_HANDLER: createError(
|
||||
'FST_ERR_PLUGIN_INVALID_ASYNC_HANDLER',
|
||||
'The %s plugin being registered mixes async and callback styles. Async plugin should not mix async and callback style.',
|
||||
500,
|
||||
TypeError
|
||||
),
|
||||
|
||||
/**
|
||||
* Avvio Errors
|
||||
|
||||
Reference in New Issue
Block a user