1 23 24 26 27 package com.sun.enterprise.management.support; 28 29 import javax.management.ObjectName ; 30 import javax.management.InstanceNotFoundException ; 31 32 35 final class DeferRegistrationException extends InstanceNotFoundException  36 { 37 public static final long serialVersionUID=0xABCDEFAB; 39 40 final ObjectName mFailingPattern; 41 42 public 43 DeferRegistrationException( final ObjectName failingPattern ) 44 { 45 mFailingPattern = failingPattern; 46 } 47 48 public ObjectName  49 getFailingPatterN() 50 { 51 return mFailingPattern; 52 } 53 } 54 55 | Popular Tags |