Error which gets thrown when the given storage threshold
has exceeded.
class StorageExceededError extends HealthCheckError {
constructor(message: string, causes: any)
causes: any
isHealthCheckError: true
}
Constructor
Initializes the error
|
constructor(keyword: string, cause: any)
Parameters
Option |
Type |
Description |
keyword
|
string |
The keyword (heap, rss, disk e.g.)
|
cause
|
any |
The cause of the health check error
|
|