View Javadoc
1 package org.smartcomps.twister.common.persistence; 2 3 import org.smartcomps.twister.engine.exception.EngineException; 4 5 /*** 6 * Thrown when an object cannot be created (persisted) for business 7 * meaningful reasons (i.e. an equivalent object already exists). 8 */ 9 public class CreationException extends EngineException { 10 public CreationException(String s) { 11 super(s); 12 } 13 14 public CreationException(String s, Throwable throwable) { 15 super(s, throwable); 16 } 17 18 public CreationException(Throwable throwable) { 19 super(throwable); 20 } 21 }

This page was automatically generated by Maven