소스 검색

Reordered class declaration (not supported on some systems)

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@716 a333f486-631f-4898-b8df-5754b55c2be0
romainq 14 년 전
부모
커밋
2bc4aa3973
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      core/coreexception.class.inc.php

+ 4 - 4
core/coreexception.class.inc.php

@@ -25,10 +25,6 @@
 
 
 
-class SecurityException extends CoreException
-{
-}
-
 class CoreException extends Exception
 {
 	public function __construct($sIssue, $aContextData = null, $sImpact = '')
@@ -111,4 +107,8 @@ class CoreUnexpectedValue extends CoreException
 {
 }
 
+class SecurityException extends CoreException
+{
+}
+
 ?>