mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-05 20:41:31 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
9 lines
198 B
PHP
9 lines
198 B
PHP
<?php
|
|
namespace Aws\AppMesh\Exception;
|
|
|
|
use Aws\Exception\AwsException;
|
|
|
|
/**
|
|
* Represents an error interacting with the **AWS App Mesh** service.
|
|
*/
|
|
class AppMeshException extends AwsException {}
|