hjplayer
Version:
hjplayer, a HTML5 Player, can play flv and hls by Media Source Extension, based on typescript;
23 lines (22 loc) • 607 B
TypeScript
/**
* 定义异常
*/
export declare class RuntimeException {
_message: string;
constructor(message: string);
readonly name: string;
readonly message: string;
toString(): string;
}
export declare class IllegalStateException extends RuntimeException {
constructor(message: string);
readonly name: string;
}
export declare class InvalidArgumentException extends RuntimeException {
constructor(message: string);
readonly name: string;
}
export declare class NotImplementedException extends RuntimeException {
constructor(message: string);
readonly name: string;
}