diff --git a/li.strolch.model/src/main/java/li/strolch/model/xml/XmlModelSaxFileReader.java b/li.strolch.model/src/main/java/li/strolch/model/xml/XmlModelSaxFileReader.java index 9dedd6eb4..82b8a5b36 100644 --- a/li.strolch.model/src/main/java/li/strolch/model/xml/XmlModelSaxFileReader.java +++ b/li.strolch.model/src/main/java/li/strolch/model/xml/XmlModelSaxFileReader.java @@ -68,7 +68,7 @@ public class XmlModelSaxFileReader extends XmlModelSaxReader { File includeFile = new File(this.modelFile.getParentFile(), includeFileS); if (!includeFile.exists() || !includeFile.canRead()) { String msg = "The IncludeFile does not exist, or is not readable. Source model: {0} with IncludeFile: {1}"; //$NON-NLS-1$ - msg = MessageFormat.format(msg, this.modelFile.getName(), includeFileS); + msg = MessageFormat.format(msg, this.modelFile.getAbsolutePath(), includeFileS); throw new IllegalArgumentException(msg); }