You can basically treat this case as a segmentation fault (segfault) on the PC.
The most probably reason for the error is that you misused a pointer variable or told RTOS to read from a wrong address (by passing wrong parameters to one of its functions).
Unlike ordinary PC OSes the TI-RTOS gives you much more information in such cases and in theory you can decode all that information by following the instructions in TI's guide on this topic: link:http://www.ti.com/lit/an/spma043/spma043.pdf[Diagnosing Software Faults in Stellaris Microcontrollers].
However, this is usually overkill because you don't need nor want to deal with that much information.
What you usually need to do is simply fix your pointers by using the debugger.