UNPKG
@da-web/js-audio-recorder
Version:
latest (1.2.1)
1.2.1
js audio recorder plugin
@da-web/js-audio-recorder
/
src
/
exception
/
exception.ts
9 lines
(8 loc)
•
150 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
/** * 异常处理 *
@static
*
@param
{
*
} message 错误消息 */
export
function
throwError
(
message: string
) {
throw
new
Error
(message); }