1 17 package org.alfresco.service.cmr.dictionary; 18 19 20 25 public class DictionaryException extends RuntimeException  26 { 27 private static final long serialVersionUID = 3257008761007847733L; 28 29 public DictionaryException(String msg) 30 { 31 super(msg); 32 } 33 34 public DictionaryException(String msg, Throwable cause) 35 { 36 super(msg, cause); 37 } 38 39 } 40 | Popular Tags |