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