blob: 1cc5bb8236fa016fdc5fc8c41955713252146f1d (
plain)
1
2
3
4
5
6
7
|
package no.eliashaugsbakk.kompilator.IO;
public class FileReaderWriterException extends Exception {
public FileReaderWriterException(String message, Exception e) {
super("FileReaderWriter: " + message, e);
}
}
|