You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class UsageException extends \LogicException {} // exceptions caused by bad usage by developer (preventable) – e.g. called method in a wrong moment etc.
class RuntimeException extends \RuntimeException {} // exceptions caused by unpredictable circumstances on server (not preventable) – e.g. file does not exist, external system not accessible etc.
final class CannotResolveCoordinates extends RuntimeException {}