File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/scala/higherkindness/rules_scala/workers/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ object AnnexMapper {
4141 case farmHash : FarmHash => farmHash
4242 case hash : Hash => hash
4343 case lastModified : LastModified => new LastModified (JarHelper .DEFAULT_TIMESTAMP )
44- case _ => throw new Exception (" Unexpected Stamp type encountered when writing." )
44+ case _ => throw new Exception (s " Unexpected Stamp type encountered when writing. ${stamp.getClass} -- $stamp " )
4545 }
4646 }
4747
@@ -66,7 +66,7 @@ object AnnexMapper {
6666 case lastModified : LastModified => {
6767 Stamper .forLastModifiedP(PlainVirtualFileConverter .converter.toPath(file))
6868 }
69- case _ => throw new Exception (" Unexpected Stamp type encountered when reading" )
69+ case _ => throw new Exception (s " Unexpected Stamp type encountered when reading ${stamp.getClass} -- $stamp " )
7070 }
7171 }
7272}
You can’t perform that action at this time.
0 commit comments