This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Foodloop-Server/lib/Pear/LocalLoop/Error.pm

11 lines
185 B
Perl
Raw Normal View History

2019-07-02 15:21:01 +01:00
package Pear::LocalLoop::Error;
use Moo;
extends 'Throwable::Error';
package Pear::LocalLoop::ImplementationError;
use Moo;
use namespace::clean;
2019-07-05 15:30:31 +01:00
extends 'Pear::LocalLoop::Error';
2019-07-02 15:21:01 +01:00
2019-07-05 15:30:31 +01:00
1;