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
/
UserSettings
/
Exceptions
/
StorageFailedException.php
StorageFailedException.php
in Metricool – Social media and site statistics trunk, at app/Features/UserSettings/Exceptions/StorageFailedException.php
17 lines
320 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
\
UserSettings
\
Exceptions
;
6
7
/**
8
* Is thrown when a Storage fails to store or retrieve a setting
9
*/
10
class
StorageFailedException
extends
\
RuntimeException
11
{
12
public
function
__construct
(
string
$
message
)
13
{
14
parent
::
__construct
(
$
message
)
;
15
}
16
}
17