diff options
| author | Jim Lawson | 2016-12-19 12:27:15 -0800 |
|---|---|---|
| committer | GitHub | 2016-12-19 12:27:15 -0800 |
| commit | 4eebd787312792f7a3722af61ab7e6349081d3b4 (patch) | |
| tree | 333fe66fba7ea7337fa1f6ffe1ec905cd2f724f3 /chiselFrontend/src/main/scala/chisel3/core | |
| parent | 0233f704e83d380b1fe8311dfffa3f44f74b506b (diff) | |
| parent | dd4650d29ed18ec610ad7561f4e9c990ba887a3d (diff) | |
Merge pull request #360 from ucb-bar/exceptionfix
Throw exceptions for cloneType failures - fix #358
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 } } |
