first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
class OTGS_Installer_Products_Parsing_Exception extends Exception {
const RESPONSE_PARSING_ERROR_MESSAGE = 'Error in response parsing from %s.';
public static function createForResponse( $products_url ) {
return new OTGS_Installer_Products_Parsing_Exception(
sprintf(
self::RESPONSE_PARSING_ERROR_MESSAGE,
$products_url
)
);
}
}

View File

@@ -0,0 +1,5 @@
<?php
class OTGS_Installer_Fetch_Subscription_Exception extends Exception {
}

View File

@@ -0,0 +1,4 @@
<?php
class OTGS_Installer_Site_Key_Exception extends Exception {
}