1 17 package org.alfresco.service.cmr.version; 18 19 import java.text.MessageFormat ; 20 21 24 public class ReservedVersionNameException extends RuntimeException  25 { 26 29 private static final long serialVersionUID = 3690478030330015795L; 30 31 34 private static final String MESSAGE = "The version property name {0} clashes with a reserved verison property name."; 35 36 42 public ReservedVersionNameException(String propertyName) 43 { 44 super(MessageFormat.format(MESSAGE, new Object []{propertyName})); 45 } 46 } 47 | Popular Tags |