mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 11:44:11 +00:00
11 lines
180 B
PHP
11 lines
180 B
PHP
<?php
|
|
|
|
namespace distinctm\LaravelDataSync\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class NoCriteriaException extends Exception
|
|
{
|
|
protected $message = 'No criteria/attributes detected';
|
|
}
|