1 25 26 package org.objectweb.easybeans.security.jacc.provider; 27 28 32 public class JPolicyException extends Exception { 33 34 37 private static final long serialVersionUID = 8379966277572408042L; 38 39 43 public JPolicyException(final String message) { 44 super(message); 45 } 46 47 52 public JPolicyException(final String message, final Throwable throwable) { 53 super(message, throwable); 54 } 55 } 56 | Popular Tags |