1 12 13 package com.openedit.modules.admin.filemanager; 14 15 import com.openedit.OpenEditException; 16 17 18 24 public class PageAlreadyExistsException extends OpenEditException 25 { 26 31 public PageAlreadyExistsException(String inMsg) 32 { 33 super(inMsg); 34 } 35 36 42 public PageAlreadyExistsException(String inMsg, Throwable inRootCause) 43 { 44 super(inMsg, inRootCause); 45 } 46 47 52 public PageAlreadyExistsException(Throwable inRootCause) 53 { 54 super(inRootCause); 55 } 56 } 57 | Popular Tags |