InvalidPortNameException constructor

InvalidPortNameException(
  1. String name
)

Display error message on invalid reserved name.

Creates a InvalidPortNameException with an optional error message.

Implementation

InvalidPortNameException(String name)
    : super(
          'Invalid name "$name", must be legal SystemVerilog and not collide'
          ' with any keywords.');