I have issues on my GovernmentOrUnit can anyone make it work??
For further actions, you may consider blocking this person and/or reporting abuse
I have issues on my GovernmentOrUnit can anyone make it work??
For further actions, you may consider blocking this person and/or reporting abuse
Harshit Singh -
InterSystems Developer -
Faris Durrani -
Frank Delporte -
Top comments (2)
In your GovernmentOrgUnit class, you have a method at the bottom,
public void setClearance(int )
your error is because you do not have a parameter declared. It needs to look like this:
public void setClearance(int a)
or
public void setClearance()
if you do not intend to pass anything
What are the issues?