-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e648d24
commit 56d7676
Showing
6 changed files
with
235 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
// | ||
// Copyright (c) ZeroC, Inc. All rights reserved. | ||
// | ||
|
||
namespace Ice; | ||
|
||
class Exception extends \Exception {} | ||
|
||
class LocalException extends Exception {} | ||
|
||
abstract class UserException extends Exception | ||
{ | ||
abstract public function ice_id(); | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
// | ||
// Copyright (c) ZeroC, Inc. All rights reserved. | ||
// | ||
|
||
namespace Ice; | ||
|
||
class InitializationData | ||
{ | ||
public function __construct($properties=null, $logger=null) | ||
{ | ||
$this->properties = $properties; | ||
$this->logger = $logger; | ||
} | ||
|
||
public $properties; | ||
public $logger; | ||
} | ||
|
||
?> |
Oops, something went wrong.