blob: 96afadadfd21ea9f5fd6a4d1f1141bb1b1356a52 (
plain)
1
2
3
4
5
6
7
8
9
|
package no.eliashaugsbakk.kompilator.IO;
import no.eliashaugsbakk.kompilator.CompilationException;
public class FileReaderWriterException extends CompilationException {
public FileReaderWriterException(String message, Exception e) {
super("Filhåndtering: " + message, e);
}
}
|