1 5 package org.exoplatform.services.communication.forum; 6 7 13 public class ForumServiceException extends Exception { 14 final static public int UNKNOWN_ERROR = 0 ; 15 final static public int CATEGORY_NOT_FOUND = 1 ; 16 final static public int FORUM_NOT_FOUND = 2 ; 17 final static public int TOPIC_NOT_FOUND = 3 ; 18 final static public int POST_NOT_FOUND = 4 ; 19 20 private int errorCode_ ; 21 22 public ForumServiceException(String s, int errorCode) { 23 super(s) ; 24 errorCode_ = errorCode ; 25 } 26 public int getErrorCode() { return errorCode_ ; } 27 } 28 | Popular Tags |