Why is this an issue?

Exception handlers should contain logic to handle the caught exception. Empty exception handlers indicate that an exception is being ignored instead of correctly handled.

How to fix it

If the exception should be handled at a higher level, remove the exception handler:

try
  RaiseException;
except
  // Do nothing
end;
RaiseException;

If the exception should be handled at this level, add some logic to handle it:

try
  RaiseException;
except
  // Do nothing
end;
try
  RaiseException;
except
  Log('Oh no, exception raised :(');
end;