UNPKG
testtrack-cli
Version:
latest (2.0.0)
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Submit your automated test runs to your Test Track account project
testtrack-cli
/
bin
/
exceptions
/
InvalidCommandException.ts
8 lines
(7 loc)
•
284 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
class
InvalidCommandException
extends
Error
{
constructor
(
message
:
string
) {
super
(message);
// Set the prototype explicitly (needed to support instanceof checks in TypeScript)
Object
.
setPrototypeOf
(
this
,
InvalidCommandException
.
prototype
); } }