1 23 24 package org.objectweb.jorm.naming.api; 25 26 import org.objectweb.jorm.api.PException; 27 28 32 public class PExceptionNaming extends PException { 33 37 public PExceptionNaming(String error) { 38 super(error); 39 } 41 46 public PExceptionNaming(Exception e, String error) { 47 super(e, error); 48 } 50 public PExceptionNaming(Exception nestedException) { 51 super(nestedException); 52 } 53 } 54 | Popular Tags |