Browse
For agents
About
Metricool – Social media and site statistics
/
trunk
Metricool – Social media and site statistics
vtrunk
Switch version
2.1.0
2.0.2
2.0.1
2.0.0
1.27
trunk
Overview
Code
metricool
/
app
/
Features
/
TaskManagement
/
Exceptions
/
DismissRequiredTaskException.php
DismissRequiredTaskException.php
in Metricool – Social media and site statistics trunk, at app/Features/TaskManagement/Exceptions/DismissRequiredTaskException.php
17 lines
333 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
declare
(
strict_types
=
1
)
;
4
5
namespace
Metricool
\
Features
\
TaskManagement
\
Exceptions
;
6
7
/**
8
* Thrown when trying to dismiss a required task.
9
*/
10
class
DismissRequiredTaskException
extends
\
RuntimeException
11
{
12
public
function
__construct
(
)
13
{
14
parent
::
__construct
(
'
Task is required and cannot be dismissed.
'
)
;
15
}
16
}
17