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