Expensive is a matter of degrees and context.
I work in image processing and I consider division expensive. In my case, any operation that ends up being performed two to 5 million times in one loop adds up. This may be the difference between 1/8 of a second and 1/32 of a second. 1/8 of a second in UI time is a lot for a dynamic display. 1/32 is acceptable.
In other cases, it could be full decoding of large JPEG images and scaling them down instead of taking advantage of power of 2 scaled down versions also encoded in the same file.
In web page time, it might be the number of server hits on a page load. See what I mean?
Context is everything.
Resources are considered expensive if they are scarce and cause other things to wait. If you have 1 non-raid disk, you pay a heavy price on access if two processes are bouncing the head all over the place, hence the heavy reliance on caching both on the drive and in the OS.
Your printer is a very expensive resource, especially if it's out of paper, hence the queue.
Exceptions are expensive when compared with other language features. Static method invocation is cheap. Plain method invocation is slightly more expensive. Virtual method invocation is slightly more expensive. Exceptions are much more costly.
For example, you could complain the C# doesn't have type-strong polymorphic return types, and I could say - oh no, it does - just throw your result and catch the right type on the other side. Then I'd get laughed out of the room for making the suggestion. Compared with a return (which is a scant few instructions), an Exception may cause dozens to hundreds, depending on the context.