unierror.uts 585 字节
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/**
 * 错误主题
 */
export const UniErrorSubject = 'uni-fileSystemManager';


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

	[1200002, 'type error. only support base64 / utf-8'],
	[1300002, 'no such file or directory'],
	[1300013, 'permission denied'],
	[1300021, 'Is a directory'],
	[1300022, 'Invalid argument'],
	[1300066, 'directory not empty'],
	[1301003, 'illegal operation on a directory'],
	[1301005, 'file already exists'],
	[1300201, 'system error'],
	[1300202, 'the maximum size of the file storage limit is exceeded'],
	
]);