View Javadoc
1 package org.smartcomps.twister.common.lifecycle; 2 3 /*** 4 * Thrown when a lifecycla manager can't be created or a resource can't be 5 * created, started, stopped or destroyed. 6 */ 7 public class LifecycleException extends Exception { 8 9 public LifecycleException(String message) { 10 super(message); 11 } 12 13 public LifecycleException(String message, Throwable cause) { 14 super(message, cause); 15 } 16 17 public LifecycleException(Throwable cause) { 18 super(cause); 19 } 20 }

This page was automatically generated by Maven