~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to lib/Exception/XiboException.php

  • Committer: Dan Garner
  • Date: 2016-02-16 14:21:08 UTC
  • mto: This revision was merged to the branch mainline in revision 484.
  • Revision ID: git-v1:63232095626c7ce5aee618d037440309aa4f8e42
UI/Model/Structure for dynamic display groups.
xibosignage/xibo#724

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * Spring Signage Ltd - http://www.springsignage.com
4
 
 * Copyright (C) 2016 Spring Signage Ltd
5
 
 * (BaseException.php)
6
 
 */
7
 
 
8
 
 
9
 
namespace Xibo\Exception;
10
 
 
11
 
/**
12
 
 * Class XiboException
13
 
 * @package Xibo\Exception
14
 
 */
15
 
class XiboException extends \Exception
16
 
{
17
 
    public $httpStatusCode = 400;
18
 
    public $handledException = false;
19
 
 
20
 
    /**
21
 
     * @return bool
22
 
     */
23
 
    public function handledException()
24
 
    {
25
 
        return $this->handledException;
26
 
    }
27
 
}
 
 
b'\\ No newline at end of file'