ayende / rhino-licensing

A software licensing framework
http://ayende.com
BSD 3-Clause "New" or "Revised" License
333 stars 167 forks source link

An unhandled exception of type 'Rhino.Licensing.LicenseExpiredException' occurred in Rhino.Licensing.dll #11

Open kklinger1982 opened 9 years ago

kklinger1982 commented 9 years ago

Get an Error when starts the script and the license is expired whether its a trial or standard.

"An unhandled exception of type 'Rhino.Licensing.LicenseExpiredException' occurred in Rhino.Licensing.dll"

kklinger1982 commented 9 years ago

Okay after adding

catch (LicenseExpiredException ex)
            {
                MessageBox.Show("License is expired.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

there is no more error, but i get an "License is expired." whether its a trial or standard.