source: branches/objectmq-1.0/src/omq/exception/NoContainsInstanceException.java

Last change on this file was 33, checked in by amoreno, 11 years ago

new release version

File size: 265 bytes
Line 
1package omq.exception;
2
3public class NoContainsInstanceException extends Exception {
4
5        public NoContainsInstanceException(String reference) {
6                super("Reference: " + reference + " not found");
7        }
8
9        /**
10         *
11         */
12        private static final long serialVersionUID = 1L;
13
14}
Note: See TracBrowser for help on using the repository browser.