1 package net.trajano.twiff; 2 3 /*** 4 * Subclass of {@link net.trajano.twiff.TwiffException} when a form had no 5 * "token" value. 6 * 7 * @author Archimedes Trajano 8 */ 9 public class MissingTokenException extends TwiffException { 10 /*** 11 * Construct a new exception with no cause and no detail message. 12 */ 13 public MissingTokenException() { 14 super(); 15 } 16 }