diff options
| author | Aditya Naik | 2021-12-09 11:19:27 -0800 |
|---|---|---|
| committer | GitHub | 2021-12-09 19:19:27 +0000 |
| commit | 3f21bbb52363c3105f6a0ff961fa7a411dd0c7ab (patch) | |
| tree | 51091d93308f2f6f781e47128b1c6f26af2898f2 /core/src/main/scala/chisel3/Data.scala | |
| parent | 849d4a0b7f6f7ea056c5280b9d319dadf5225022 (diff) | |
Better MonoConnect error messages (#2248)
Co-authored-by: Megan Wachs <megan@sifive.com>
Diffstat (limited to 'core/src/main/scala/chisel3/Data.scala')
| -rw-r--r-- | core/src/main/scala/chisel3/Data.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/chisel3/Data.scala b/core/src/main/scala/chisel3/Data.scala index 89908401..d67a3af6 100644 --- a/core/src/main/scala/chisel3/Data.scala +++ b/core/src/main/scala/chisel3/Data.scala @@ -494,7 +494,7 @@ abstract class Data extends HasId with NamedComponent with SourceInfoDoc { } catch { case MonoConnectException(message) => throwException( - s"Connection between sink ($this) and source ($that) failed @$message" + s"Connection between sink ($this) and source ($that) failed @: $message" ) } } else { |
