You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
joint_exc/frontend/src/constants/errorMessages.ts

24 lines
793 B

10 months ago
/**
*
* 使
*/
// 一般的なエラーメッセージ
export const GENERAL_ERRORS = {
UNEXPECTED_ERROR: '予期せぬエラーが発生しました',
};
// 認証関連のエラーメッセージ
export const AUTH_ERRORS = {
LOGIN_FAILED: 'ログインに失敗しました',
REGISTER_FAILED: 'ユーザー登録に失敗しました',
};
// タスク関連のエラーメッセージ
export const TASK_ERRORS = {
FETCH_FAILED: 'タスクの取得に失敗しました',
CREATE_FAILED: 'タスクの作成に失敗しました',
UPDATE_FAILED: 'タスクの更新に失敗しました',
DELETE_FAILED: 'タスクの削除に失敗しました',
};