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