1 25 package org.ofbiz.entity; 26 27 33 public class EntityCryptoException extends GenericEntityException { 34 35 public EntityCryptoException() { 36 super(); 37 } 38 39 public EntityCryptoException(Throwable nested) { 40 super(nested); 41 } 42 43 public EntityCryptoException(String str) { 44 super(str); 45 } 46 47 public EntityCryptoException(String str, Throwable nested) { 48 super(str, nested); 49 } 50 } 51 | Popular Tags |