If an object is passed to its class' copy constructor, is there a way for it to know that?

Code:
//Can "copy" know it's being copied?
SomeClass& SomeClass::SomeClass(SomeClass const& copy)
{
...
}