2015-11-03 03:20:38 +01:00
|
|
|
<?php
|
|
|
|
class ERRORS {
|
2015-11-19 01:57:59 +01:00
|
|
|
const INVALID_CREDENTIALS = 'User or password is not defined';
|
2016-02-02 22:41:10 +01:00
|
|
|
const SESSION_EXISTS = 'User is already logged in';
|
2016-07-04 20:57:00 +02:00
|
|
|
const NO_PERMISSION = 'You have no permission to access';
|
|
|
|
const INVALID_TITLE = 'Invalid title';
|
|
|
|
const INVALID_CONTENT = 'Invalid content';
|
2015-11-03 03:20:38 +01:00
|
|
|
}
|