new pisilinux web sites

This commit is contained in:
Erkan IŞIK
2026-07-01 16:44:17 +03:00
commit b58488b586
21740 changed files with 2066209 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class ConnectionErrorException extends Exception
{
const lang =
[
'tr' => 'Veritabanı bağlantısı sağlanamadı! Lütfen bağlantı ayarlarınızı kontrol edin! [%]',
'en' => 'Database connection error! Please check your connection settings! [%]'
];
}
@@ -0,0 +1,17 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class DatabaseErrorException extends Exception
{
}
@@ -0,0 +1,17 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class DuplicateCheckException extends Exception
{
}
@@ -0,0 +1,21 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class InvalidArgumentException extends Exception
{
const lang =
[
'tr' => '[%] yöntemini parametresiz kullanamazsınız!',
'en' => 'You cannot use the [%] method without parameters!'
];
}
@@ -0,0 +1,17 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class NoSearchException extends Exception
{
}
@@ -0,0 +1,17 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class NoTableException extends Exception
{
}
@@ -0,0 +1,21 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class OrderByInvalidSecondArgumentException extends Exception
{
const lang =
[
'tr' => 'string $type parametresi "asc" veya "desc" değerlerini alabilir!',
'en' => 'string $type parameter can take "asc" or "desc" values!'
];
}
@@ -0,0 +1,25 @@
<?php namespace ZN\Database\Exception;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
use ZN\Exception;
class UnconditionalException extends Exception
{
const lang =
[
'placement' =>
[
'#' => '[DB::where(mixed $column, string $value [, string $condition = "and"])]'
],
'tr' => 'Koşulsuz silme işlemi gerçekleştiremezsiniz! Lütfen # ile koşul tanımlayın.',
'en' => 'You can not perform unconditional deletion! Please define the condition with #.'
];
}