User Lou Franco - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:49:51Zhttp://stackoverflow.com/feeds/user/3937http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795817/is-there-an-existing-deepzoom-equivalent-for-winforms/1796747#17967470Answer by Lou Franco for is there an existing deepzoom equivalent for winforms ?Lou Franco2009-11-25T12:56:01Z2009-11-25T12:56:01Z<p>Disclaimer: I work at Atalasoft</p>
<p>Do you need DeepZoom or just zooming into an image?</p>
<p>If you just need image zooming, our WPF image controls support that. <a href="http://atalasoft.com/download" rel="nofollow">Download DotImage</a>, start an evaluation and then give us a call and we'll help you implement it in your project today (request a 1-on-1 coding session with me -- Lou).</p>
<p>If you need DeepZoom, you'll have to download the zoomed images on the zoom in event. It's not hard to write if you already have the image repository -- we'd be happy to help you implement that with DotImage.</p>
http://stackoverflow.com/questions/1796587/how-to-use-stdwstring-with-stdistringstream/1796617#17966171Answer by Lou Franco for How to use std::wstring with std::istringstream?Lou Franco2009-11-25T12:30:39Z2009-11-25T12:30:39Z<p>My compiler has wistringstream -- this is all it is:</p>
<p><code>typedef basic_istringstream<wchar_t> wistringstream;</code></p>
http://stackoverflow.com/questions/1755816/c-delegate-with-string-reference-to-c-callback/1767119#17671190Answer by Lou Franco for C# delegate with string reference to c++ callbackLou Franco2009-11-19T22:46:14Z2009-11-19T22:46:14Z<p>I don't believe that the marshalling can deal with std::string. I think you need to make your own callback that passes char * and then write the glue code between the two.</p>
<p>Also, once the delegate is marshalled into a callback, that callback does not count as a reference to the object that the delegate might have been made from. So if the delegate is not a static method, you need to stuff it somewhere for the lifetime of the unmanaged callback.</p>
http://stackoverflow.com/questions/1763210/can-i-hide-or-make-my-iphone-application-unsearchable-on-the-app-store/1763256#17632561Answer by Lou Franco for Can I hide or make my iphone Application unsearchable on the App Store?Lou Franco2009-11-19T13:21:43Z2009-11-19T13:21:43Z<p>Apple sells special developer licenses if you want to control the installation. They are meant for Enterprises to develop and deploy applications for only their use. Here's an article about it:</p>
<p><a href="http://www.infoworld.com/t/platforms/new-iphone-enterprise-developer-program-299-musings-about-iphone-app-licensing-648" rel="nofollow">http://www.infoworld.com/t/platforms/new-iphone-enterprise-developer-program-299-musings-about-iphone-app-licensing-648</a></p>
http://stackoverflow.com/questions/1758805/problems-with-updating-records-in-django-admin/1758834#17588341Answer by Lou Franco for Problems with updating records in django-adminLou Franco2009-11-18T20:28:55Z2009-11-18T20:28:55Z<ol>
<li>On the field, put <code>null=True</code> in the field constructor if the field is not required. Edit: commenter says <code>blank=True</code> -- he's probably right -- I don't have the docs in front of me.</li>
<li>It does an insert if the ID is empty and an update if the id has a value. Not sure where the save you are talking about is happening, but that info might help. (there's a deleted answer that points out that the exclude('id') is probably causing this problem -- I think that's right as well)</li>
</ol>
<p>Also, I agree about the docs. If you can read python, I highly suggest just trying to read the Django source code for the area you want to figure out. The source is some of the nicest, most readable source I've ever read. I've never had a problem just jumping in and reading it -- it's almost as good as a doc.</p>
http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#17587820Answer by Lou Franco for Best policy for "article's photo" in a magazine online?Lou Franco2009-11-18T20:20:01Z2009-11-18T20:20:01Z<p>Use ImageMagick on the server to create the other two images.</p>
<ul>
<li><a href="http://php.net/manual/en/book.imagick.php" rel="nofollow">http://php.net/manual/en/book.imagick.php</a></li>
<li><a href="http://www.evolt.org/node/55650" rel="nofollow">http://www.evolt.org/node/55650</a></li>
</ul>
http://stackoverflow.com/questions/1701342/running-numbers-in-sql/1701348#17013480Answer by Lou Franco for Running numbers in SQLLou Franco2009-11-09T14:34:29Z2009-11-09T14:34:29Z<p>It depends on your DBMS -- in Oracle, you can use rownum in the select. There is no standard SQL way, but most DBMS's support some way to do it.</p>
<p>Here's mysql:</p>
<p><a href="http://jimlife.wordpress.com/2008/09/09/displaying-row-number-rownum-in-mysql/" rel="nofollow">http://jimlife.wordpress.com/2008/09/09/displaying-row-number-rownum-in-mysql/</a></p>
<p>Here's SQL Server</p>
<p><a href="http://samsudeenb.blogspot.com/2008/09/how-to-generate-rownum-in-sql-server.html" rel="nofollow">http://samsudeenb.blogspot.com/2008/09/how-to-generate-rownum-in-sql-server.html</a></p>
http://stackoverflow.com/questions/1701298/how-to-restrict-access-to-my-dll/1701336#17013363Answer by Lou Franco for How to restrict access to my DLLLou Franco2009-11-09T14:33:05Z2009-11-09T14:33:05Z<p>It depends on how much you care. A simple way is to make everything internal and then use friend assemblies to allow your assembly to call it.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/0tke9fxk.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0tke9fxk.aspx</a></p>
<p>Most things you would do can be defeated, but if someone wants to call, they will figure out a way to do it.</p>
http://stackoverflow.com/questions/1683758/how-do-i-access-to-an-address-in-memory-with-c/1683766#16837661Answer by Lou Franco for How do I access to an address in memory with c#?Lou Franco2009-11-05T21:29:20Z2009-11-05T21:29:20Z<p>Use unsafe</p>
<p><a href="http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx</a></p>
http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1683732#16837321Answer by Lou Franco for When are two enums equal in C#?Lou Franco2009-11-05T21:24:17Z2009-11-05T21:24:17Z<p>If you want them to match, cast them to int</p>
<pre><code>Assert.AreEqual((int)enumA.one,(int)enumB.one);
</code></pre>
<p>would pass because they are both the first listed. If you wanted them to match because they both say "one" then you need to use reflection.</p>
http://stackoverflow.com/questions/1651118/security-risks-of-using-eval-to-execute-user-input-in-javascript/1651130#16511302Answer by Lou Franco for Security risks of using eval() to execute user input in JavaScriptLou Franco2009-10-30T17:10:14Z2009-10-30T17:10:14Z<p>It will be running on their own machine. Just don't let them save strings and send to other people -- also don't put the values in the URL via a GET (so that it can be emailed).</p>
http://stackoverflow.com/questions/1637538/does-mac-os-x-have-a-better-installation-story-than-windows/1637578#16375783Answer by Lou Franco for Does Mac OS X have a better installation story than Windows?Lou Franco2009-10-28T14:24:37Z2009-10-28T14:24:37Z<p>This is a really thoughtful blog on that topic from John Gruber (daringfireball.net)</p>
<p><a href="http://daringfireball.net/2009/09/how%5Fshould%5Fmac%5Fapps%5Fbe%5Fdistributed" rel="nofollow">http://daringfireball.net/2009/09/how%5Fshould%5Fmac%5Fapps%5Fbe%5Fdistributed</a></p>
<p>The story is weird -- many installers just give you a .app file that the user is expected to copy to their Applications directory. It's simple, but do novice users understand? And there are actual installers as well.</p>
http://stackoverflow.com/questions/1628842/image-format-question/1632807#16328070Answer by Lou Franco for Image format questionLou Franco2009-10-27T18:36:37Z2009-10-27T18:36:37Z<p>I don't know DevIL, but nearly any imaging library is going to provide you with an image object that has some concept of Pixel Format. The pixel format tells you how the image is laid out in memory. Looking quickly at the docs, I see that <code>IlTexImage</code> has a property called <code>Format</code> which can be one of <code>IL_COLOUR_INDEX</code>, <code>IL_RGB</code>, <code>IL_RGBA</code>, etc. The docs say </p>
<blockquote>
<p>The format of the image data. Formats accepted are listed here and
are self-explanatory</p>
</blockquote>
http://stackoverflow.com/questions/1632484/c-initialization-question/1632550#16325500Answer by Lou Franco for C++ initialization questionLou Franco2009-10-27T17:50:47Z2009-10-27T17:50:47Z<p>Just to be clear about what's happening (with regards to your 2nd question)</p>
<p><code>std::map< std::string, std::string > m_someMap</code> creates a stack variable called m_someMap and the default constructor is called on it. The rule for C++ for all of your objects is if you go:</p>
<pre><code>T varName;
</code></pre>
<p>where T is a type, varName is default constructed.</p>
<pre><code>T* varName;
</code></pre>
<p>should be explicitly assigned to NULL (or 0) -- or nullptr in the new standard.</p>
http://stackoverflow.com/questions/1625697/one-afternoon-to-do-networking-what-do-you-all-suggest/1625783#16257830Answer by Lou Franco for One afternoon to do networking, what do you all suggest?Lou Franco2009-10-26T16:31:34Z2009-10-26T16:31:34Z<p>I'm not in NYC now, but I worked there for the first 10 years of my career. The NYC tech job market is driven by the financial industry, which isn't doing so hot right now. </p>
<p>I would definitely call recruiters ASAP and they might be able to set something up for a Friday. Also go look on job boards like JoelOnSoftware and 37Signals and see if you see anything.</p>
<p>You do not have zero academic qualification -- don't sell yourself short. Not everyone is looking for CS majors -- figure out how to sell the benefit of the degree you have.</p>
http://stackoverflow.com/questions/1625712/waiting-for-iphone-memory-management/1625743#16257430Answer by Lou Franco for Waiting for iPhone Memory ManagementLou Franco2009-10-26T16:23:49Z2009-10-26T16:23:49Z<p>I wrote this blog about some techniques for tracking this down:</p>
<p><a href="http://loufranco.com/blog/files/debugging-memory-iphone.html" rel="nofollow">http://loufranco.com/blog/files/debugging-memory-iphone.html</a></p>
<p>The upshot is that you can run the application in a mode that will detect a lot of common memory problems.</p>
http://stackoverflow.com/questions/1615605/how-do-i-update-my-svn-working-copy-to-the-changes-from-one-specific-revision-an/1615661#16156611Answer by Lou Franco for How do I update my SVN working copy to the changes from one specific revision, and not include previous revisions?Lou Franco2009-10-23T20:15:58Z2009-10-23T20:15:58Z<p>The trunk and your working copy are two different things -- I take it from this, that the trunk contains the revisions you want and some that you don't want, and that you don't have branches.</p>
<p>One thing to do is to branch from the trunk at the point that your current working copy is from. Then merge the one revision you want into that branch and work off the branch. When you are ready, merge back into the trunk.</p>
http://stackoverflow.com/questions/1614533/strange-problem-comparing-floats-in-objective-c/1614552#16145521Answer by Lou Franco for Strange problem comparing floats in objective-CLou Franco2009-10-23T16:29:15Z2009-10-23T16:29:15Z<p>Generally, in any language, you can't really count on equality of float-like types. In your case since it looks like you have more control, it does appear that 0.1 is not float by default. You could probably find that out with sizeof(0.1) (vs. sizeof(self.scroller.currentValue).</p>
http://stackoverflow.com/questions/1609440/camel-case-method-names/1609469#16094691Answer by Lou Franco for camel case method namesLou Franco2009-10-22T19:33:30Z2009-10-22T19:33:30Z<p>Usually you tend to follow the one that your framework uses. So Java developers tend to use lowercase to start, and .NET developers tend to use uppercase to start.</p>
http://stackoverflow.com/questions/1607479/whichddatabase-would-prove-efficient/1607533#16075333Answer by Lou Franco for WhichdDatabase would prove efficient?Lou Franco2009-10-22T14:15:32Z2009-10-22T14:15:32Z<p>Everything works with Java, and you can get support for anything if you pay for it. </p>
<p>My personal experience:</p>
<ol>
<li><p>Are your servers Windows machines? If not, MSSQL is out. Otherwise MSSQL has pretty decent GUIs. I haven't tried working with it and Java -- the Visual Studio support for developing with it is very good.</p></li>
<li><p>I haven't found Oracle to be worth the cost. I worked at a place that paid for support and still it took them forever to acknowledge data-munging bugs in the JDBC driver (still not fixed, last I checked).</p></li>
<li><p>My MySql usage is simple -- if you need complex functionality, check to make sure that it's supported</p></li>
</ol>
<p>My 2 cents: stick with MySql or Postgres, simple SQL and try not to make any stored procedures or use proprietary SQL. If you find that you outgrow it, it will be a trivial port.</p>
<p>The more you try to take advantage of the proprietary features, the more you will be locked in. </p>
http://stackoverflow.com/questions/1598207/odd-circular-dependency-issue/1598219#15982192Answer by Lou Franco for Odd Circular Dependency IssueLou Franco2009-10-21T01:05:56Z2009-10-21T01:05:56Z<p>replace:</p>
<pre><code>Bullet(*this) fired_bullet;
</code></pre>
<p>with:</p>
<pre><code>Bullet fired_bullet(*this);
</code></pre>
http://stackoverflow.com/questions/1593905/how-to-manipulate-an-image-at-pixel-level-in-c/1598028#15980281Answer by Lou Franco for How to manipulate an image at pixel level in C?Lou Franco2009-10-21T00:07:17Z2009-10-21T00:07:17Z<p><a href="http://www.imagemagick.org/script/magick-wand.php" rel="nofollow">MagickWand</a> from ImageMagick is another good option</p>
http://stackoverflow.com/questions/1594779/msvcr90d-dll-not-found-when-building-in-release/1594887#15948871Answer by Lou Franco for Msvcr90d.dll not found when building in RELEASELou Franco2009-10-20T14:10:39Z2009-10-20T14:10:39Z<p>If you are getting the warning LNK 4098 during build, please see this</p>
<p><a href="http://msdn.microsoft.com/en-us/library/6wtdswk0%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/6wtdswk0%28VS.71%29.aspx</a></p>
<p>And follow the recommendations.</p>
<p>Also, make sure that you chose the correct C/C++ runtime under the Code Generation tab (Multi-threaded DLL -- not Multithreaded Debug DLL)</p>
http://stackoverflow.com/questions/1594395/are-there-any-programs-that-will-shrink-the-size-of-a-sql-script-file/1594406#15944061Answer by Lou Franco for Are there any programs that will shrink the size of a sql script file?Lou Franco2009-10-20T12:54:33Z2009-10-20T12:54:33Z<p>SQL is much harder to shrink, the field, table names and commands need to be what they are. Plus, you wouldn't just want to rewrite the commands as something shorter because it could have implications on performance.</p>
<p>Depending on the DBMS that you use, it may allow short names for commands, and then there might be a converter.</p>
http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#15906728Answer by Lou Franco for Try-Catch and how throw work in catch blockLou Franco2009-10-19T19:40:06Z2009-10-19T19:40:06Z<p>No, it rethrows. Somewhere up the call stack needs to catch it.</p>
<p>The <code>return false</code> is never reached.</p>
http://stackoverflow.com/questions/1588441/c-composite-pattern-and-database-access/1588482#15884821Answer by Lou Franco for C# Composite pattern and Database AccessLou Franco2009-10-19T12:42:28Z2009-10-19T12:42:28Z<p>Take a look at the <code>Proxy</code> pattern. Using it, you would put <code>PharmaProductProxy</code> objects in the tree that have the same interface as <code>PharmaProduct</code>, but lazy load themselves when they are accessed.</p>
http://stackoverflow.com/questions/1574367/lnk4075-ignoring-editandcontinue-due-to-opticf-specification/1574433#15744331Answer by Lou Franco for LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:ICF' specificationLou Franco2009-10-15T19:13:24Z2009-10-15T19:13:24Z<p>You can either have "Edit and continue" support or optimizations. Usually, you put "Edit and continue" on debug builds, and optimizations on release builds.</p>
<p>Edit and continue allows you to change code while you are debugging and just keep the program running. It's not supported if the code also has to be optimized.</p>
http://stackoverflow.com/questions/1572804/do-i-need-to-call-graphics-dispose/1572823#15728231Answer by Lou Franco for Do I need to call Graphics.Dispose()?Lou Franco2009-10-15T14:40:31Z2009-10-15T14:40:31Z<p>The rule with <code>Dispose()</code> is that if you created an object that is <code>IDisposable</code>, then you are supposed to call it. The best way is within a <code>using</code> block or a <code>finally</code>.</p>
<p>It might be that you didn't need to do it, but Dispose() will decide that.</p>
<p>If you got an object, but didn't call the constructor, then you need to check the documentation for the method that returned it to see if it expects you to call Dispose() or it will.</p>
http://stackoverflow.com/questions/1572740/are-there-any-gui-toolkits-built-on-top-of-html-canvas-like-swing-swt-gtk-or-qt/1572807#15728070Answer by Lou Franco for Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt?Lou Franco2009-10-15T14:38:37Z2009-10-15T14:38:37Z<p><a href="http://processingjs.org/" rel="nofollow">Processing.js</a> is built on top of canvas. It's not the same kind of abstraction as the ones you listed -- it's meant to be a port of <a href="http://processing.org/" rel="nofollow">Processing</a>.</p>
http://stackoverflow.com/questions/1572586/c-how-to-deal-with-const-object-that-needs-to-be-modified/1572609#15726091Answer by Lou Franco for C++: how to deal with const object that needs to be modified?Lou Franco2009-10-15T14:07:18Z2009-10-15T14:12:51Z<pre><code>const_cast<type without const>()
</code></pre>
<p>But, does <code>someMethod()</code> really return <code>const myType</code>? If so, you are making a reference to a temporary -- it will be destroyed and your reference will be bad. Change <code>myVar</code> to non-ref (so it copies) -- no need to declare it const in that case. Or, if <code>someMethod()</code> returns a reference, use the <code>const_cast</code> if you must (but you are changing something that <code>someMethod</code> thought wouldn't change).</p>
http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782Comment by Lou Franco on Best policy for "article's photo" in a magazine online?Lou Franco2009-11-19T17:32:14Z2009-11-19T17:32:14ZIt's up to you and how you code it. You could check to see if the result file exists and skip it. Probably the best thing to do is to create the 2 other images right after the original is uploaded -- then they are already there when the request comes in.http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782Comment by Lou Franco on Best policy for "article's photo" in a magazine online?Lou Franco2009-11-19T12:57:42Z2009-11-19T12:57:42ZWhen you call convert on the server, the output jpeg will be on the server, but you could copy it to a folder in your webroot and then put an img tag in the page that uses it. http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782Comment by Lou Franco on Best policy for "article's photo" in a magazine online?Lou Franco2009-11-18T21:46:37Z2009-11-18T21:46:37ZWith imagemagick, you just need to call <code>convert in.jpg -resize 400x400 out.jpg</code> and it's done. You can control the type of resizing if you want. I have never used firework, but imagemagick is very simple. More info: <a href="http://www.imagemagick.org/Usage/resize/" rel="nofollow">imagemagick.org/Usage/resize</a>http://stackoverflow.com/questions/1103522/what-is-an-efficient-algorithm-to-find-whether-a-singly-linked-list-is-circular-c/1103544#1103544Comment by Lou Franco on What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?Lou Franco2009-11-16T12:47:27Z2009-11-16T12:47:27Zif i!=j at the start of the loop, then i cannot equal j after the first increment of j because i is incremented first.http://stackoverflow.com/questions/1701342/running-numbers-in-sqlComment by Lou Franco on Running numbers in SQLLou Franco2009-11-09T14:35:17Z2009-11-09T14:35:17ZIt's DBMS dependent -- what do you use?http://stackoverflow.com/questions/1681232/how-is-the-structure-of-a-imageComment by Lou Franco on How Is The Structure Of a ImageLou Franco2009-11-05T18:37:52Z2009-11-05T18:37:52ZOnly because you used the word "mount" -- I need to ask. Are you talking about disk images -- like .iso files that represent an entire filesystem -- or are you talking about photographic images? Mounting is something that is associated with disk images, but all of the answers seem to think you are talking about photos.http://stackoverflow.com/questions/278045/iphone-image-upload-in-background/278059#278059Comment by Lou Franco on iPhone image upload in background.Lou Franco2009-10-31T17:00:43Z2009-10-31T17:00:43ZI'm not sure that's true. Email and Safari seem to do things in the background (email definitely continues to download my messages). There are probably non-public API's to do it. However, if you call them, you will be rejected.http://stackoverflow.com/questions/1601648/interfacing-with-the-end-users-scanner-from-a-webapp-web-scanner-integration/1620301#1620301Comment by Lou Franco on Interfacing with the end-user's scanner from a webapp (web/scanner integration)Lou Franco2009-10-28T20:35:33Z2009-10-28T20:35:33ZThe applet would have to be trusted. There is no way to do this in a browser without the user accepting some kind of trust elevation.http://stackoverflow.com/questions/1601648/interfacing-with-the-end-users-scanner-from-a-webapp-web-scanner-integration/1622596#1622596Comment by Lou Franco on Interfacing with the end-user's scanner from a webapp (web/scanner integration)Lou Franco2009-10-28T18:50:49Z2009-10-28T18:50:49ZI am from Atalasoft. We are publishing a CodeProject next week on this exact issue -- would happily send you the doc if you email me: lou -dot- franco -at- atalasoft.com (replace -dot- and -at-).http://stackoverflow.com/questions/1606802/auto-increment-the-primary-key-without-setting-the-identity/1606812#1606812Comment by Lou Franco on Auto-increment the primary key without setting the identityLou Franco2009-10-22T12:23:47Z2009-10-22T12:23:47Zis that true. Does a begin transaction block other begin transactions? Couldn't they both calculate max(key) as the same?http://stackoverflow.com/questions/1601393/solution-to-an-error-happening-in-ie6-when-trying-to-download-and-open-a-pdfComment by Lou Franco on Solution to an error happening in IE6 when trying to download and open a PDF Lou Franco2009-10-21T14:58:30Z2009-10-21T14:58:30ZProbably you should put the answer part in an answer below.http://stackoverflow.com/questions/1594395/are-there-any-programs-that-will-shrink-the-size-of-a-sql-script-file/1594403#1594403Comment by Lou Franco on Are there any programs that will shrink the size of a sql script file?Lou Franco2009-10-20T12:56:29Z2009-10-20T12:56:29ZHe wants it to still be a script (at least that's how I interpret the question)http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672Comment by Lou Franco on Try-Catch and how throw work in catch blockLou Franco2009-10-19T20:36:14Z2009-10-19T20:36:14ZI guess the question is what would it mean for you to return false and also throw an exception -- if you want the caller to know that something happened, just return false and then the caller can throw if it has to. Or the caller could catch the exception. Or maybe you need a more complex return that has more information in it. http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-blockComment by Lou Franco on Try-Catch and how throw work in catch blockLou Franco2009-10-19T19:42:59Z2009-10-19T19:42:59ZThe best thing to do is write some code and run it in the debugger. http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672Comment by Lou Franco on Try-Catch and how throw work in catch blockLou Franco2009-10-19T19:42:05Z2009-10-19T19:42:05ZNo, it doesn't return, it exits the function via an exception -- the control goes inside of a catch block up the call stack.