“Jogue o erro no TypeScript” Respostas de código

Erro de arremesso de texto datilografado

throw new Error('Something bad occured');
Clever Cowfish

lançar o erro de erro

var my_error : Error = new Error("Task failed successfully!");
throw my_error;
Uptight Unicorn

Jogue o erro no TypeScript

// Throw generic Error
throw new Error("This is the error message");

// Throw more specific error types
throw new EvalError()
throw new RangeError()
throw new ReferenceError()
throw new SyntaxError()
throw new TypeError()
throw new URIError()
throw new AggregateError()
throw new InternaError() // Non-standard: Not for production sites

// Custom Error
class FooBarError extends Error {
	constructor(message: string) {
    	super(message);
    }
    
    ...
}
Tomanator

Respostas semelhantes a “Jogue o erro no TypeScript”

Perguntas semelhantes a “Jogue o erro no TypeScript”

Mais respostas relacionadas para “Jogue o erro no TypeScript” em TypeScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código