View Javadoc
1 package org.smartcomps.twister.engine.exception; 2 3 /*** 4 * Exception for the standard BPEL fault bpws:correlationViolation. 5 */ 6 public class CorrelationViolationException extends EngineException { 7 8 public CorrelationViolationException(String s) { 9 super(s); 10 } 11 12 public CorrelationViolationException(String s, Throwable throwable) { 13 super(s, throwable); 14 } 15 16 public CorrelationViolationException(Throwable throwable) { 17 super(throwable); 18 } 19 }

This page was automatically generated by Maven