1 25 package org.objectweb.easybeans.tests.common.ejbs.base; 26 27 import org.objectweb.easybeans.tests.common.exception.CustomException00; 28 import org.objectweb.easybeans.tests.common.exception.CustomException01; 29 30 31 36 public interface ItfExceptions { 37 38 41 Integer VALUE = new Integer (1); 42 43 44 48 Integer getInt(); 49 50 55 Integer throwsOneException00() throws CustomException00; 56 57 62 Integer throwsOneException01() throws CustomException01; 63 64 70 Integer throwsTwoExceptions() throws CustomException00, CustomException01; 71 } 72 | Popular Tags |