diff options
| author | grebe | 2016-12-22 15:01:48 -0500 |
|---|---|---|
| committer | GitHub | 2016-12-22 15:01:48 -0500 |
| commit | 33854075e4c50995d0011f773813571535a830fa (patch) | |
| tree | 56bb7e5ad2111ae3cb3c5f6dbf0a1a65f878a674 /chiselFrontend/src/main/scala/chisel3/core | |
| parent | 033e71a69767664c4bfae246d6cef2e2880c4404 (diff) | |
| parent | 4eebd787312792f7a3722af61ab7e6349081d3b4 (diff) | |
Merge branch 'master' into fixedPointFromBits
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/core')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala index 9bbf9d0e..26c971b3 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala @@ -408,12 +408,12 @@ class Bundle extends Aggregate { constructor.newInstance(_parent.get).asInstanceOf[this.type] } catch { case _: java.lang.reflect.InvocationTargetException | _: java.lang.IllegalArgumentException => - Builder.error(s"Parameterized Bundle ${this.getClass} needs cloneType method. You are probably using " + + Builder.exception(s"Parameterized Bundle ${this.getClass} needs cloneType method. You are probably using " + "an anonymous Bundle object that captures external state and hence is un-cloneTypeable") this } case _: java.lang.reflect.InvocationTargetException | _: java.lang.IllegalArgumentException => - Builder.error(s"Parameterized Bundle ${this.getClass} needs cloneType method") + Builder.exception(s"Parameterized Bundle ${this.getClass} needs cloneType method") this } } |
