mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
7 lines
74 B
PHP
7 lines
74 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum ExceptionMessageType{
|
|
case Html;
|
|
case Text;
|
|
}
|