robotdotnet / WPILib

DotNet implementation of WPILib for FIRST Robotics Competition (FRC)
27 stars 8 forks source link

Clean up exceptions #36

Closed ThadHouse closed 9 years ago

ThadHouse commented 9 years ago

Since Java has both checked and unchecked exceptions, some of the allocation features throw a checked allocation, which is then caught and an unchecked allocation is thrown. We should remove this duplication. It will also make stack tracing failures easier.