git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@926 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2012-01-28 19:50:21 +00:00
parent 108b0f1e3e
commit 44de921f48
2 changed files with 3 additions and 3 deletions

View file

@ -1870,7 +1870,7 @@ public abstract class AbstractHafasProvider extends AbstractNetworkProvider
if (normalizedType != 0)
return newLine(normalizedType + type + number);
throw new IllegalStateException("cannot normalize type " + type + " number " + number + " line " + line);
throw new IllegalStateException("cannot normalize type '" + type + "' number '" + number + "' line '" + line + "'");
}
throw new IllegalStateException("cannot normalize line " + line);

View file

@ -326,7 +326,7 @@ public class RmvProvider extends AbstractHafasProvider
if (normalizedType != 0)
return newLine(normalizedType + type + number);
throw new IllegalStateException("cannot normalize type " + type + " number " + number + " line " + line);
throw new IllegalStateException("cannot normalize type '" + type + "' number '" + number + "' line '" + line + "'");
}
if ("11".equals(line))
@ -334,7 +334,7 @@ public class RmvProvider extends AbstractHafasProvider
if ("12".equals(line))
return newLine("T12");
throw new IllegalStateException("cannot normalize line " + line);
throw new IllegalStateException("cannot normalize line '" + line + "'");
}
@Override