Skip to content

Commit

Permalink
Adding support for 415 Unsupported Media Type exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent Scheffler committed Nov 25, 2019
1 parent da441bf commit e61a476
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Exceptions/UnsupportedMediaTypeHttpException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace Limber\Exceptions;

/**
* 415 Unsupported Media Type exception.
*/
class UnsupportedMediaTypeHttpException extends HttpException
{
/**
* @inheritDoc
*/
protected $httpStatus = 415;
}

0 comments on commit e61a476

Please sign in to comment.