Starsector API
Loading...
Searching...
No Matches
RuleException.java
Go to the documentation of this file.
1package com.fs.starfarer.api.util;
2
3public class RuleException extends RuntimeException {
4
5 public RuleException(String string) {
6 super(string);
7 }
8
10 super(e);
11 }
12
13}