001package com.fs.starfarer.api.util;
002
003public class RuleException extends RuntimeException {
004
005        public RuleException(String string) {
006                super(string);
007        }
008        
009        public RuleException(Exception e) {
010                super(e);
011        }
012
013}