1 24 package org.objectweb.jalisto.se.exception; 25 26 public class JcaException extends JalistoException { 27 public JcaException() { 28 } 29 30 public JcaException(String s) { 31 super(s); 32 } 33 34 public JcaException(String s, Throwable throwable) { 35 super(s, throwable); 36 } 37 38 public JcaException(Throwable throwable) { 39 super(throwable); 40 } 41 } 42 | Popular Tags |