This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jmauzyk
committed
Oct 21, 2020
1 parent
d16a546
commit 246b61c
Showing
21 changed files
with
1,611 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* CardConnect for Craft Commerce plugin for Craft CMS 3.x | ||
* | ||
* CardConnect integration for Craft Commerce 2 | ||
* | ||
* @link http://www.joel-king.com | ||
* @copyright Copyright (c) 2019 jmauzyk | ||
*/ | ||
|
||
namespace jmauzyk\commerce\cardconnect\errors; | ||
|
||
use craft\commerce\errors\SubscriptionException; | ||
|
||
/** | ||
* Class PaymentSourceException | ||
* | ||
* @author jmauzyk | ||
* @package CardConnect | ||
* @since 1.4.0 | ||
* | ||
*/ | ||
class PaymentSourceException extends SubscriptionException | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* CardConnect for Craft Commerce plugin for Craft CMS 3.x | ||
* | ||
* CardConnect integration for Craft Commerce 2 | ||
* | ||
* @link http://www.joel-king.com | ||
* @copyright Copyright (c) 2019 jmauzyk | ||
*/ | ||
|
||
namespace jmauzyk\commerce\cardconnect\errors; | ||
|
||
use yii\base\Exception; | ||
|
||
/** | ||
* Class ProfileException | ||
* | ||
* @author jmauzyk | ||
* @package CardConnect | ||
* @since 1.4.0 | ||
* | ||
*/ | ||
class ProfileException extends Exception | ||
{ | ||
} |
Oops, something went wrong.