001package org.clafer.ast.analysis; 002 003/** 004 * 005 * @author jimmy 006 */ 007public class TypeException extends AnalysisException { 008 009 public TypeException(Throwable cause) { 010 super(cause); 011 } 012 013 public TypeException(String message, Throwable cause) { 014 super(message, cause); 015 } 016 017 public TypeException(String message) { 018 super(message); 019 } 020 021 public TypeException() { 022 } 023}