Files
planka/client/src/constants/ErrorCodes.js
Maksim Eltyshev 5ffef61fe7 Initial commit
2019-08-31 04:07:25 +05:00

10 lines
165 B
JavaScript
Executable File

const UNAUTHORIZED = 'E_UNAUTHORIZED';
const NOT_FOUND = 'E_NOT_FOUND';
const CONFLICT = 'E_CONFLICT';
export default {
UNAUTHORIZED,
NOT_FOUND,
CONFLICT,
};