90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
'use strict'
|
|
|
|
class ElasticsearchClientError extends Error {
|
|
constructor (message) {
|
|
super(message)
|
|
this.name = 'ElasticsearchClientError'
|
|
}
|
|
}
|
|
|
|
class TimeoutError extends ElasticsearchClientError {
|
|
constructor (message, request) {
|
|
super(message)
|
|
Error.captureStackTrace(this, TimeoutError)
|
|
this.name = 'TimeoutError'
|
|
this.message = message || 'Timeout Error'
|
|
this.request = request
|
|
}
|
|
}
|
|
|
|
class ConnectionError extends ElasticsearchClientError {
|
|
constructor (message, request) {
|
|
super(message)
|
|
Error.captureStackTrace(this, ConnectionError)
|
|
this.name = 'ConnectionError'
|
|
this.message = message || 'Connection Error'
|
|
this.request = request
|
|
}
|
|
}
|
|
|
|
class NoLivingConnectionsError extends ElasticsearchClientError {
|
|
constructor (message) {
|
|
super(message)
|
|
Error.captureStackTrace(this, NoLivingConnectionsError)
|
|
this.name = 'NoLivingConnectionsError'
|
|
this.message = message || 'No Living Connections Error'
|
|
}
|
|
}
|
|
|
|
class SerializationError extends ElasticsearchClientError {
|
|
constructor (message) {
|
|
super(message)
|
|
Error.captureStackTrace(this, SerializationError)
|
|
this.name = 'SerializationError'
|
|
this.message = message || 'Serialization Error'
|
|
}
|
|
}
|
|
|
|
class DeserializationError extends ElasticsearchClientError {
|
|
constructor (message) {
|
|
super(message)
|
|
Error.captureStackTrace(this, DeserializationError)
|
|
this.name = 'DeserializationError'
|
|
this.message = message || 'Deserialization Error'
|
|
}
|
|
}
|
|
|
|
class ConfigurationError extends ElasticsearchClientError {
|
|
constructor (message) {
|
|
super(message)
|
|
Error.captureStackTrace(this, ConfigurationError)
|
|
this.name = 'ConfigurationError'
|
|
this.message = message || 'Configuration Error'
|
|
}
|
|
}
|
|
|
|
class ResponseError extends ElasticsearchClientError {
|
|
constructor ({ body, statusCode, headers }) {
|
|
super('Response Error')
|
|
Error.captureStackTrace(this, ResponseError)
|
|
this.name = 'ResponseError'
|
|
this.message = (body && body.error && body.error.type) || 'Response Error'
|
|
this.body = body
|
|
this.statusCode = body && typeof body.status === 'number'
|
|
? body.status
|
|
: statusCode
|
|
this.headers = headers
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
ElasticsearchClientError,
|
|
TimeoutError,
|
|
ConnectionError,
|
|
NoLivingConnectionsError,
|
|
SerializationError,
|
|
DeserializationError,
|
|
ConfigurationError,
|
|
ResponseError
|
|
}
|