1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Services/Exceptions/classes/class.ilException.php';
5
6/**
7* Class for advanced editing exception handling in ILIAS.
8*
9* @author Michael Jansen <mjansen@databay.de>
10* @version $Id$
11*
12*/
13class ilAdvancedEditingException extends ilException
14{
15    /**
16    * Constructor
17    *
18    * A message is not optional as in build in class Exception
19    *
20    * @access public
21    * @param	string	$a_message message
22    *
23    */
24    public function __construct($a_message)
25    {
26        parent::__construct($a_message);
27    }
28}
29