PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
cashier
/
src
/
Exceptions
<?php namespace Laravel\Cashier\Exceptions; use Exception; class InvalidCustomer extends Exception { /** * Create a new InvalidCustomer instance. * * @param \Illuminate\Database\Eloquent\Model $owner * @return static */ public static function notYetCreated($owner) { return new static(class_basename($owner).' is not a Stripe customer yet. See the createAsStripeCustomer method.'); } }
[-] CustomerAlreadyCreated.php
[edit]
[-] IncompletePayment.php
[edit]
[+]
..
[-] InvalidInvoice.php
[edit]
[-] InvalidCustomerBalanceTransaction.php
[edit]
[-] SubscriptionUpdateFailure.php
[edit]
[-] InvalidCustomer.php
[edit]
[-] InvalidPaymentMethod.php
[edit]