Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Meini

Meini

Meini has asked 12 questions and find answers to 10 problems.

Stats

250
EtPoint
50
Vote count
12
questions
10
answers

About

DailyWTF

enter image description here enter image description here enter image description here enter image description here enter image description here

    public void howToSwallowAnExceptionWithNoCatchBlock()
    {
        try { 
            throw new Exception(); 
        } finally {
            return; 
        }
    }