1 22 package org.jboss.system; 23 24 30 public class MissingAttributeException 31 extends ConfigurationException 32 { 33 39 public MissingAttributeException(final String name) { 40 super(makeMessage(name)); 41 } 42 43 50 public MissingAttributeException(final String name, final Throwable nested) { 51 super(makeMessage(name), nested); 52 } 53 54 57 private static String makeMessage(final String name) { 58 return "Missing attribute '" + name + "'"; 59 } 60 } 61 | Popular Tags |