allebb/cartographer

View on GitHub
lib/Exceptions/InvalidObjectTypeException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Ballen\Cartographer\Exceptions;

/**
 * Cartographer
 *
 * Cartographer is a PHP library providing the ability to programmatically
 * generate GeoJSON objects.
 *
 * @author Bobby Allen <ballen@bobbyallen.me>
 * @license http://www.gnu.org/licenses/gpl-3.0.html
 * @link https://github.com/allebb/cartographer
 * @link http://bobbyallen.me
 *
 */
class InvalidObjectTypeException extends \Exception
{

    public function __construct($message, $code = 0, Exception $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}