001    package com.hammurapi.reasoning.impl;
002    
003    public class RuntimeReasoningException extends RuntimeException {
004    
005            public RuntimeReasoningException(String message, Throwable cause) {
006                    super(message, cause);
007            }
008    
009            public RuntimeReasoningException(String message) {
010                    super(message);
011            }
012    
013            public RuntimeReasoningException(Throwable cause) {
014                    super(cause);
015            }
016    
017    }