Skip to content

Commit

Permalink
added missing php exception clasess, BadResponse and NullResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed May 30, 2018
1 parent 790bd9c commit 8b4c9e5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions php/BadResponse.php
@@ -0,0 +1,9 @@
<?php

namespace ccxt;

use Exception;

class BadResponse extends ExchangeError {

}
9 changes: 9 additions & 0 deletions php/NullResponse.php
@@ -0,0 +1,9 @@
<?php

namespace ccxt;

use Exception;

class NullResponse extends BadResponse {

}

0 comments on commit 8b4c9e5

Please sign in to comment.