module java.text.ParseException;

import java.lang.all;

class ParseException : Exception {
    this( String e = null ){
        super(e);
    }
}