first commit
This commit is contained in:
@@ -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
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class OTGS_Installer_Fetch_Subscription_Exception extends Exception {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
class OTGS_Installer_Site_Key_Exception extends Exception {
|
||||
}
|
||||
Reference in New Issue
Block a user