View Javadoc
1   package de.fhdw.wtf.generator.database.exception;
2   
3   public abstract class GenerationException extends Exception {
4   	
5   	/**
6   	 * 
7   	 */
8   	private static final long serialVersionUID = -1002939721092196078L;
9   	
10  	public GenerationException(final String message) {
11  		super(message);
12  	}
13  }