Page MenuHomePhabricator
Paste P9482

(An Untitled Masterwork)
ActivePublic

Authored by Addshore on Oct 26 2019, 1:57 PM.
Tags
None
Referenced Files
F30893715: raw.txt
Oct 26 2019, 1:57 PM
Subscribers
None
private function throwUsageExceptions( $result ) {
var_dump($result);
die();
if ( is_array( $result ) && array_key_exists( 'error', $result ) ) {
throw new UsageException(
$result['error']['code'],
$result['error']['info'],
$result
);
}
}