Pokemon Exception Handling
      Indiscriminately catching exceptions. "Pokemon - gotta catch 'em all"
        try {
        doSomething();
        }
        catch (Exception) {
        // Do nothing
        }
      
      Also known as the Diaper Pattern (it catches all the shit).
Also known as YodaExceptionHandling.