unierror.uts 387 字节
Newer Older
lizhongyi_'s avatar
lizhongyi_ 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/**
 * 错误主题
 */
export const UniErrorSubject = 'uni-file-manager';


/**
 * 错误码
 * @UniError
 */
export const UniErrors:Map<number, string> = new Map([

	[1200002, 'type error. only support base64 / utf-8'],
	[1300002, 'no such file or directory'],
	[1301003, 'illegal operation on a directory'],
	[1300202, 'the maximum size of the file storage limit is exceeded'],
	
]);