i changed the exception-handling of the new producers and localizers to use the multe...
[mir.git] / source / mircoders / localizer / MirLocalizerFailure.java
1 package mircoders.localizer;
2
3 import multex.Failure;
4
5 public class MirLocalizerFailure extends Failure {
6   public MirLocalizerFailure(String msg, Throwable throwable) {
7     super(msg, throwable);
8   }
9 }