Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104173544
PhutilAggregateException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Mar 7, 00:06
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Mar 9, 00:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24758253
Attached To
rPHU libphutil
PhutilAggregateException.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Exception that aggregates other exceptions into a single exception. For
* example, if you have several objects which can perform a task and just want
* at least one of them to succeed, you can do something like this:
*
* $exceptions = array();
* $success = false;
* foreach ($engines as $engine) {
* try {
* $engine->doSomething();
* $success = true;
* break;
* } catch (Exception $ex) {
* $exceptions[] = $ex;
* }
* }
*
* if (!$success) {
* throw new PhutilAggregateException("All engines failed:", $exceptions);
* }
*
* @concrete-extensible
* @group error
*/
class
PhutilAggregateException
extends
Exception
{
private
$exceptions
=
array
();
public
function
__construct
(
$message
,
array
$other_exceptions
)
{
$this
->
exceptions
=
$other_exceptions
;
$full_message
=
array
();
$full_message
[]
=
$message
;
foreach
(
$other_exceptions
as
$exception
)
{
$ex_message
=
get_class
(
$exception
).
': '
.
$exception
->
getMessage
();
$ex_message
=
' - '
.
str_replace
(
"
\n
"
,
"
\n
"
,
$ex_message
);
$full_message
[]
=
$ex_message
;
}
parent
::
__construct
(
implode
(
"
\n
"
,
$full_message
),
count
(
$other_exceptions
));
}
public
function
getExceptions
()
{
return
$this
->
exceptions
;
}
}
Event Timeline
Log In to Comment