viagogo/gogokit.php

View on GitHub
src/exceptions/RequestException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Viagogo\Exceptions;

/**
 *
 */
class RequestException extends ViagogoException {
    public function __toString() {
        return get_class($this) . ':' . $this->getMessage() . "\n" . $this->getCode() . "\n";
    }
}