Skip to content

Commit

Permalink
Add Calendar Specific Exception Classes
Browse files Browse the repository at this point in the history
  • Loading branch information
onairmarc committed Apr 27, 2024
1 parent c27c84e commit ff910e8
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
/*
* Encore Digital Group - Planning Center PHP SDK
* Copyright (c) 2024. Encore Digital Group
*/

namespace EncoreDigitalGroup\PlanningCenter\Objects\Calendar\Exceptions;

use Exception;

class NoCalendarEventInstancesException extends Exception
{
public function __construct()
{
parent::__construct('Calendar Event Has No Event Instances');
}
}

0 comments on commit ff910e8

Please sign in to comment.