From b4d1119d8456bc3c78ecc487eef7c8e0b6622e02 Mon Sep 17 00:00:00 2001 From: Peter van 't Hof <p.j.van_t_hof@lumc.nl> Date: Fri, 21 Aug 2015 09:00:19 +0200 Subject: [PATCH] Added message to exception --- .../scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala index eb3e2ac82..d581f248d 100644 --- a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala +++ b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala @@ -35,7 +35,7 @@ object BedRecord { values.lift(5) match { case Some("-") => false case Some("+") => true - case _ => throw new IllegalStateException("") + case _ => throw new IllegalStateException("Strand (column 6) must be '+' or '-'") }, values.lift(6).map(_.toInt), values.lift(7)map(_.toInt), -- GitLab