1 /* 2 * EditorGroupException.java 3 * 4 * Created on 4 Март 2006 г., 15:37 5 */ 6 7 package org.weda.tapestry.component; 8 9 /** 10 * 11 * @author Mikhail Titov 12 */ 13 public class EditorGroupException extends Exception { 14 public EditorGroupException(String message){ 15 super(message); 16 } 17 public EditorGroupException(String message, Throwable cause){ 18 super(message, cause); 19 } 20 }