summaryrefslogtreecommitdiff
path: root/app/models/Exception/FeedException.php
blob: 3fe0f4ea013a92addffdeae70f1fc739554a46fe (plain)
1
2
3
4
5
6
7
<?php

class FeedException extends Exception {
	public function __construct ($message) {
		parent::__construct ($message);
	}
}