View Javadoc
1   package de.fhdw.wtf.context.exception;
2   
3   /**
4    * This class represents a Framework Exception which occurs when someone tries to manipulate Data during a Revision.
5    * 
6    */
7   public class ManipulationDuringRevisionException extends FrameworkException {
8   	
9   	/**
10  	 * Exception message.
11  	 */
12  	private static final String MESSAGE = "Data Manipulation during a revision is not allowed";
13  	
14  	/**
15  	 * Creates a ManipulationDuringRevisionException.
16  	 */
17  	public ManipulationDuringRevisionException() {
18  		super(MESSAGE);
19  	}
20  	
21  	/**
22  	 * The exception's serial ID.
23  	 */
24  	private static final long serialVersionUID = 1L;
25  	
26  }