All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ceylon.language.meta.model.StorageException.ceylon Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
"Thrown when you try to read attributes that were not shared nor captured and had no
 physical storage allocated, so do not exist at runtime.
 
 For example if you try to read the attribute from this class:
 
     shared class Foo(){
         Integer x = 2;
     }
 
 This will not work because `x` is neither shared nor captured and so it is just not
 retained in the runtime instances of `Foo`.
 "
since("1.2.0")
shared class StorageException(String message) extends Exception(message){}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy