001package fr.aumgn.dac2.exceptions; 002 003import fr.aumgn.dac2.DAC; 004 005/** 006 * Thrown when trying to define an arbitrary shape which is too large. 007 */ 008public class TooLargeArbitraryShape extends DACException { 009 010 private static final long serialVersionUID = 6526160450722634895L; 011 012 public TooLargeArbitraryShape(DAC dac) { 013 super(dac.getMessages().get("arbitraryshape.toolarge")); 014 } 015}