1 17 package org.alfresco.service.cmr.dictionary; 18 19 import org.alfresco.service.namespace.QName; 20 21 27 public class InvalidTypeException extends InvalidClassException 28 { 29 private static final long serialVersionUID = 3256722870754293558L; 30 31 public InvalidTypeException(QName typeName) 32 { 33 super(null, typeName); 34 } 35 36 public InvalidTypeException(String msg, QName typeName) 37 { 38 super(msg, typeName); 39 } 40 41 44 public QName getTypeName() 45 { 46 return getClassName(); 47 } 48 } 49 | Popular Tags |