# ali2woo-lite/trunk/includes/classes/exception/RepositoryException.php

AliNext – WooCommerce Dropshipping Plugin for AliExpress, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/exception/RepositoryException.php
- Raw: https://pluginprobe.com/plugins/ali2woo-lite/trunk/raw/includes/classes/exception/RepositoryException.php
- Modified: 2024-08-01T14:22:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/exception/RepositoryException.php#L10-L20`.

```php
<?php
namespace AliNext_Lite;;

use Exception;
use Throwable;

class RepositoryException extends Exception
{
    public function __construct($message, $code = 0, Throwable $previous = null) {
        parent::__construct($message, $code, $previous);
    }

    public function __toString() {
        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
    }

}

```
