Skip to content

Commit

Permalink
Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Ceaser committed Jul 29, 2010
1 parent 34bb627 commit e9e6530
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PolymorphicJobParser extends JobParser {
val (_, processor) = regexpAndProcessor
processor(json)
} catch {
case e => throw new UnparsableJobException("Processor blew up: e.toString")
case e => throw new UnparsableJobException("Processor blew up: " + e.toString)
}
}
}
}

0 comments on commit e9e6530

Please sign in to comment.