<?php
namespace App\Service\NcPlugin;
class NcApiException extends PluginException
{
/**
* NC proxy errors
*/
const NC_UNKNOWN_ERROR = 50000;
const NC_NO_HTTP_VALIDATION_DATA = 50010;
const NC_EMPTY_HTTP_VALIDATION_DATA = 50020;
const NC_EMPTY_RESPONSE = 50030;
const NC_INVALID_RESPONSE = 50040;
const NC_CANNOT_REACH_API = 50050;
} Back to Directory