<?php

class BaseResponse
{
    const TOO_MANY_REQUESTS = 429;
    const REGISTRATION_ERROR = 460;
    const INVALID_REQUEST = 461;
    const DATA_NOT_FOUND = 462;
    const SQL_ERROR = 463;
    const TAKOLA_REQUEST_ERROR = 464;
    const INVALID_AUTHENTICATION_AUTHORIZATION = 465;
    const INVALID_ACTION = 466;
    const TOKEN_EXPIRED = 467;
    const INVALID_PASSWORD = 468;
    const INVALID_TOKEN_ERROR = 469;
    const GUZZLE_ERROR = 470;
    const TOKEN_NOT_FOUND = 471;
    const INVALID_REFRESH_TOKEN = 472;
    const USER_IS_BANNED = 473;
    const MINIO_ERROR = 474;
    const DATA_NOT_AVAILABLE = 475;
    const PRECONDITION_REQUIRED = 476;
    const DUPLICATE_DATA = 477;
    const UNEXPECTED_ERROR = 500;
    const SERVICE_UNAVAILABLE = 503;
}
