Schneespur — Open-source winter service documentation software (PWA + Admin). GPS tracking via OwnTracks, weather data, photo evidence, and legally compliant service records for winter maintenance operators. License: AGPL-3.0-or-later
113 lines
4 KiB
PHP
113 lines
4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* League.Csv (https://csv.thephpleague.com)
|
|
*
|
|
* (c) Ignace Nyamagana Butera <nyamsprod@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace League\Csv;
|
|
|
|
use Deprecated;
|
|
use Throwable;
|
|
|
|
/**
|
|
* InvalidArgument Exception.
|
|
*/
|
|
class InvalidArgument extends Exception
|
|
{
|
|
/**
|
|
* DEPRECATION WARNING! This class will be removed in the next major point release.
|
|
*
|
|
* @deprecated since version 9.7.0
|
|
*/
|
|
public function __construct(string $message = '', int $code = 0, ?Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
|
|
public static function dueToInvalidChunkSize(int $length, string $method): self
|
|
{
|
|
return new self($method.'() expects the length to be a positive integer '.$length.' given.');
|
|
}
|
|
|
|
public static function dueToInvalidHeaderFilename(string $filename): self
|
|
{
|
|
return new self('The filename `'.$filename.'` cannot contain the "/" and "\\" characters.');
|
|
}
|
|
|
|
public static function dueToInvalidDelimiterCharacter(string $delimiter, string $method): self
|
|
{
|
|
return new self($method.'() expects delimiter to be a single character; `'.$delimiter.'` given.');
|
|
}
|
|
|
|
public static function dueToInvalidEnclosureCharacter(string $enclosure, string $method): self
|
|
{
|
|
return new self($method.'() expects enclosure to be a single character; `'.$enclosure.'` given.');
|
|
}
|
|
|
|
public static function dueToInvalidEscapeCharacter(string $escape, string $method): self
|
|
{
|
|
return new self($method.'() expects escape to be a single character or an empty string; `'.$escape.'` given.');
|
|
}
|
|
|
|
public static function dueToInvalidBOMCharacter(string $method, Throwable $exception): self
|
|
{
|
|
return new self($method.'() expects a valid Byte Order Mark.', 0, $exception);
|
|
}
|
|
|
|
public static function dueToInvalidColumnCount(int $columns_count, string $method): self
|
|
{
|
|
return new self($method.'() expects the column count to be greater or equal to -1 '.$columns_count.' given.');
|
|
}
|
|
|
|
public static function dueToInvalidHeaderOffset(int $offset, string $method): self
|
|
{
|
|
return new self($method.'() expects header offset to be greater or equal to 0; `'.$offset.'` given.');
|
|
}
|
|
|
|
public static function dueToInvalidRecordOffset(int $offset, string $method): self
|
|
{
|
|
return new self($method.'() expects the submitted offset to be a positive integer or 0, '.$offset.' given');
|
|
}
|
|
|
|
public static function dueToInvalidColumnIndex(string|int $index, string $type, string $method): self
|
|
{
|
|
return new self($method.'() expects the '.$type.' index to be a valid string or integer, `'.$index.'` given');
|
|
}
|
|
|
|
public static function dueToInvalidLimit(int $limit, string $method): self
|
|
{
|
|
return new self($method.'() expects the limit to be greater or equal to -1, '.$limit.' given.');
|
|
}
|
|
|
|
public static function dueToInvalidOrder(string $order, string $method): self
|
|
{
|
|
return new self($method.'() expects `ASC` or `DESC` in a case-insensitive way, '.$order.' given.');
|
|
}
|
|
|
|
public static function dueToInvalidOperator(string $operator, string $method): self
|
|
{
|
|
return new self($method.'() expects valid comparison operator in a case-insensitive way, '.$operator.' given.');
|
|
}
|
|
|
|
public static function dueToInvalidSeekingPosition(int $position, string $method): self
|
|
{
|
|
return new self($method.'() can\'t seek stream to negative line '.$position);
|
|
}
|
|
|
|
public static function dueToStreamFilterNotFound(string $filtername): self
|
|
{
|
|
return new self('unable to locate filter `'.$filtername.'`');
|
|
}
|
|
|
|
public static function dueToInvalidThreshold(int $threshold, string $method): self
|
|
{
|
|
return new self($method.'() expects threshold to be null or a valid integer greater or equal to 1');
|
|
}
|
|
}
|