UNPKG
@telstra/core
Version:
latest (0.0.3)
0.0.3
0.0.1
0.0.0
Telstra SDK Core
github.com/telstra/telstra-sdk-node
telstra/telstra-sdk-node
@telstra/core
/
dist
/
errors
/
authentication
/
InvalidAuthCredentialsError.js
8 lines
(7 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
ErrorCode
}
from
'../../constants/ErrorConstants.js'
;
import
{
AuthError
}
from
'./AuthError.js'
;
export
class
InvalidAuthCredentialsError
extends
AuthError
{
constructor
(
) {
super
(
ErrorCode
.
InvalidAuthCredentials
); } }