All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.cassite.pure.ioc.IOCException Maven / Gradle / Ivy

The newest version!
package net.cassite.pure.ioc;

/**
 * thrown by cass.toolbox.ioc
 * 
 * @author wkgcass
 *
 */
public class IOCException extends RuntimeException {

        /**
         * 
         */
        private static final long serialVersionUID = 4202618483071924377L;

        public IOCException() {
                super();
        }

        public IOCException(String s) {
                super(s);
        }

        public IOCException(Throwable t) {
                super(t);
        }

        public IOCException(String s, Throwable t) {
                super(s, t);
        }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy